January 29
HTML
2018
[Type the abstract of the document here. The abstract is typically a short summary of the contents of the document. Type the abstract of the document here. The abstract is typically a short summary of the contents of the document.]
Cecilia Nistal 10B21
Contents What does HTML stand for? ............................................................................................................... 2 What is HTML used for? ...................................................................................................................... 2 What is HTML5? .................................................................................................................................. 2 How many versions of HTML are there? Show it with a timeline. ...................................................... 2 What is the basic or simple structure of an HTML document?........................................................... 3 What is the <!DOCTYPE> declaration? ................................................................................................ 4 What is the basic HTML editor? .......................................................................................................... 4 What is an HTML element? ................................................................................................................. 4 Define the elements in the basic HTML structure. ............................................................................. 4 What are the attributes of an HTML element? ................................................................................... 4 What are HTML tags? .......................................................................................................................... 5 The HTML colors: Color names, RGB values, HEX values .................................................................... 5
What does HTML stand for? HTML are abbreviations for Hyper Text Markup Language.
What is HTML used for? HTML is used to describes the structure of Web pages using markup.
What is HTML5? HTML is the latest version of Hyper Text Markup Language. These are the new application programming interfaces
HTML Geolocation HTML Drag and Drop HTML Local Storage HTML Application Cache HTML Web Workers HTML SSE
How many versions of HTML are there? Show it with a timeline.
HTML 3.2 is a W3C recommendation for HTML.
HTML 4.0 is an SGML application conforming to international standard.
HTML 4.01 supports more multimedia options, scripting languages, style sheets, better printing facilities, and documents.
What is the basic or simple structure of an HTML document? All HTML documents must start with <!DOCTYPE html> After this the document begins with <html> and ends with </html> On the HTML the visible part is between <body> and </body>
<h1> to <h6> are tags which they help to define headings. <h1> defines the most important heading. <h6> defines the least important heading.
HTML paragraphs start with the <p> tag. HTML links are defined with the <a> tag. HTML images are defined with the <img> tag.
What is the <!DOCTYPE> declaration? The <!DOCTYPE> declaration is an introduction to the web browser about what version of HTML you are writing on. TIP: always use the <!DOCTYPE> declaration so the browser knows what type of document to expect.
What is the basic HTML editor? Web pages can be created and modified by the HTML editors. HTML autocomplete will automatically insert the rest of the HTML code for you. HTML entities library allows you to insert HTML entities. Site explorer allows you to navigate the files in your website using a hierarchical menu. Search and replace will make able to search through a whole website project and searching only certain file types.
What is an HTML element? It usually consists of a start tag and end tag. Between them the content inserted goes.
Define the elements in the basic HTML structure. The <html> element defines the whole document. The <body> element defines the document body. The <h1> element defines a heading. The <p> element defines a paragraph.
What are the attributes of an HTML element? Attributes provide additional information about an element. They are always specified in the start tag. Usually they come in name/values pairs like: name=â&#x20AC;?valueâ&#x20AC;?.
What are HTML tags? The HTML tags define specific characteristics on the web browser.
The HTML colors: Color names, RGB values, HEX values Color names: a color can be specified by using a color name: It also can be specified as an RGB value using this formula: rgb(red, green, blue) A color can also be specified using a hexadecimal value in the from: #rrggbb.