| Home | Family | Softwares | Resume | Activities |
| TAG | DESCRIPTION IN SHORT |
| HTML | OPENS AN HTML PAGE |
| HEAD | Encloses identification information and supplementary information about the document |
| BASE | Specifies absolute URL address |
| LINK | Describe a special relationship between and another document |
| META | Provide meta information about the document to search engines |
| SCRIPT | Allows programs written in scripting language to be directely embedded in a Web page |
| STYLE | Specifies a style sheet for the page. This element should appear in the HEAD section of an HTML document |
| TITLE | Identifies the contents of the document in a global context. This element can be used only within the <HEAD> tag. |
| BODY | Specifies the beginning and end of the document body. |
| A | Designates the start or destination of a hypertext link. The anchor element requires the <HREF> or the <NAME> property to be specified. |
| HREF | Returns a string specifying the URL of the linked style sheet, if the style sheet is a LINK. |
| TABLE | Specifies that the contained content is organized into a table with rows and columns. |
| TR | Specifies a row in a table. |
| TD | Specifies a cell in a table. This element is valid only within a row in a table. You must use a TR element before using TD. |
| TH | Creates a row or column heading in a table. The element is similar to the <TD> element but emphasizes the text in the cell to distinguish it from text in TD cells. |
| UL |
Specifies that the following block of text is a bulleted (or unordered) list. Each item begins with a <LI> tag. The end tag is required. |
| LI |
Denotes one item of a list. This element is used inside a <DIR>, <MENU>, <OL>, or <UL> block. |
| OL |
Draws lines of text as an ordered list. |
| PRE | Display text in HTML page as in source code. No formating with <BR> and #&bspn or #&160; Tags required. |