QUICK LINKS
EXAMPLES
|
Basic Tags
| Tags Name | Description | Attributes |
| <html></html> | First and last line in every HTML document. | dir, lang, version |
| <head></head> | Descriptive information about the document. | profile |
| <title></title> | Brief description of document, displayed in title bar at top of screen. | dir, lang |
| <body></body> | Identifies the contents of the Web page. | bgcolor, style, background, text, alink, vlink, id |
| <!-- --> | Comments about the document, not seen by user. | none |
| <h1></h1> - <h2></h2> | Level 1 thru 6 headings | align, style, id |
| <p></p> | Paragraph | align, id, style |
| <br /> | Line break | id, style |
| <hr /> | Horizontal Rule or line on page | align, id, noshade, size, style, width |
| <a></a> | Anchor, used to link to other Web pages, images, sounds, or another part of the page. | href, id, name, rel, rev, style |
| <img /> | Inserts image, grapic, photo, etc. | src, alt, align, id, name, style, width, height |
List Tags
| <ol></ol> | Begins ordered list | id, style, start, type, value |
| <ul></ul> | Begins unordered list | id, style, type |
| <li></li> | Specific list item in order & unordered lists | id, style,type, value |
| <dl></dl> | Begins a definition list | id, style, type |
| <dt></dt> | Identifies the term part of a definition list | id, style |
| <dd></dd> | Identifies the definition part of definition list | id, style |
Table Tags
| <table></table> | Begins rows and columns of a table | align, bgcolor, border, cellspacing, cellpadding, id, style, width |
| <th></th> | Cell of a table that is a header for a row or column | align, bgcolor, colspan, height, rowspan, id, style, valign, width |
| <tr></tr> | Single row in a table | align, bgcolor, id, style, valign |
| <td></td> | Single cell of a table | align, bgcolor, colspan, height, id, rowspan, style, valign, width |
| <tbody></tbody> | Table body | align, id, style, valign |
| <thead></thead> | Table header that does not scroll off the screen | align, id, style, valign |
| <caption></caption> | Caption for a table | align, id, style |
| <colgroup></colgroup> | Structual division in a table that can be formatted | align, span, id, style, valign, width |
| <col /> | Groups together attributes for table columns | align, id, span, style, valign, width |
Top of Page
|