JavaScript is a sequence of statements to be executed by the browser. JavaScript Statements JavaScript statements are “commands” to the…
Read More

JavaScript is a sequence of statements to be executed by the browser. JavaScript Statements JavaScript statements are “commands” to the…
Read More
HTML5 has support for inline SVG. SVG What is SVG? SVG stands for Scalable Vector Graphics SVG is used to…
Read More
The <canvas> element is used to draw graphics, on the fly, on a web page. The example at the left…
Read More
JavaScript is typically used to manipulate HTML elements. Manipulating HTML Elements To access an HTML element from JavaScript, you can…
Read More
HTML5 New Form Attributes HTML5 has several new attributes for <form> and <input>. New attributes for <form>: autocomplete novalidate New…
Read More
JavaScript is the world’s most popular programming language. It is the language for HTML, for the web, for servers, PCs,…
Read More
HTML5 New Form Elements HTML5 has the following new form elements: <datalist> <keygen> <output> Not all browsers support all the…
Read More
HTML5 New Input Types HTML5 has several new input types for forms. These new features allow better input control and…
Read More
Padding The padding clears an area around the content (inside the border) of an element. The padding is affected by…
Read More
Semantic = Meaning. Semantic elements = Elements with meaning. What are Semantic Elements? A semantic element clearly describes its meaning…
Read More
New Elements in HTML5 The internet, and the use of the internet, has changed a lot since 1999, when HTML…
Read More
HTML5 is The Latest HTML Standard What is New? New Elements New Attributes Full CSS3 Support Video and Audio 2D/3D…
Read More
Colors are displayed combining RED, GREEN, and BLUE light. Color Values CSS colors are defined using a hexadecimal (hex) notation…
Read More
XHTML is HTML written as XML. What Is XHTML? XHTML stands for EXtensible HyperText Markup Language XHTML is almost identical…
Read More
A URL is another word for a web address. A URL can be composed of words, such as “w3schools.com”, or…
Read More
HTML Symbol Entities HTML entities was described in the previous chapter. HTML symbols like mathematical operators, arrows, technical symbols and…
Read More
To display an HTML page correctly, a web browser must know what character set (character encoding) to use. What is…
Read More
Reserved characters in HTML must be replaced with character entities. Characters, not present on your keyboard, can also be replaced…
Read More
JavaScripts make HTML pages more dynamic and interactive. The HTML <script> Tag The <script> tag is used to define a…
Read More
Colors Sorted by HEX Value Colors sorted by color name Color Name HEX Color Shades Mix Black #000000 Shades Mix…
Read More
Color Names Supported by All Browsers 140 color names are defined in the HTML and CSS color specification (17 standard…
Read More
An iframe is used to display a web page within a web page. Syntax for adding an iframe: <iframe src=”URL“></iframe>…
Read More
HTML Forms are used to select different kinds of user input. HTML Forms HTML forms are used to pass data…
Read More
Web page layout is very important to make your website look good. Design your webpage layout very carefully. Website Layouts…
Read More
HTML elements can be grouped together with <div> and <span>. HTML Block Elements Most HTML elements are defined as block…
Read More
The most common HTML lists are ordered and unordered lists: HTML Lists An ordered list: The first list item The…
Read More
HTML Table Example: First Name Last Name Points Jill Smith 50 Eve Jackson 94 John Doe 80 Adam Johnson 67…
Read More
Example HTML Images – The <img> Tag and the Src Attribute In HTML, images are defined with the <img> tag.…
Read More
CSS (Cascading Style Sheets) is used to style HTML elements. Styles and colors Manipulate Text Colors, Boxes and more… Styling…
Read More
The HTML <head> Element The <head> element is a container for all the head elements. Elements inside <head> can include…
Read More
Links are found in nearly all Web pages. Links allow users to click their way from page to page. HTML…
Read More
HTML Text Formatting This text is bold This text is italic This is computer output This is subscript and superscript…
Read More
HTML documents are divided into paragraphs. HTML Paragraphs Paragraphs are defined with the <p> tag. Example <p>This is a paragraph</p>…
Read More
Headings are important in HTML documents. HTML Headings Headings are defined with the <h1> to <h6> tags. <h1> defines the…
Read More
Attributes provide additional information about HTML elements. HTML Attributes HTML elements can have attributes Attributes provide additional information about an…
Read More
HTML documents are defined by HTML elements. HTML Elements An HTML element is everything from the start tag to the…
Read More
CSS Syntax A CSS rule has two main parts: a selector, and one or more declarations: The selector is normally…
Read More
http://www.euroinformatica.ro/work/madalin/garden/index.html Acest site a fost facut in “Dreamweaver CS5” , ca limbaj am folosit “HTML”. Pentru unele imagini am folosit…
Read More
http://www.euroinformatica.ro/work/madalin/ecoliving/ Acest site a fost facut in “Dreamweaver CS5”, ca limbaj am folosit “HTML”. Pentru unele imagini am folosit si…
Read More
HTML Headings HTML headings are defined with the <h1> to <h6> tags. Example <h1>This is a heading</h1> <h2>This is a…
Read More
First code HTML <!DOCTYPE html> <html> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html> Writing HTML Using Notepad or…
Read More
C++ provides the following classes to perform output and input of characters to/from files: ofstream: Stream class to write on…
Read More
Preprocessor directives are lines included in the code of programs preceded by a hash sign (#). These lines are not…
Read More
Exceptions provide a way to react to exceptional circumstances (like runtime errors) in programs by transferring control to special functions…
Read More
Implicit conversion Implicit conversions are automatically performed when a value is copied to a compatible type. For example: 1 2…
Read More
Before getting any deeper into this chapter, you should have a proper understanding of pointers and class inheritance. If you…
Read More
Friend functions In principle, private and protected members of a class cannot be accessed from outside the same class in…
Read More
Special member functions are member functions that are implicitly defined as member of classes under certain circumstances. There are six:…
Read More
Overloading operators Classes, essentially, define new types to be used in C++ code. And types in C++ not only interact…
Read More
Classes are an expanded concept of data structures: like data structures, they can contain data members, but they can also…
Read More