![]() |
|
|
|
| Home | Webmaster SIG Tools & Tips November 18, 2004
W3C
Standards & Specifications
|
| Version | Date | Description |
| HTML 1.0 | 1989-1994 | The first public version of HTML which included browser support for inline images and text controls. |
| HTML 2.0 | 1995 | The first version supported by all graphical browsers. It introduced interactive form elements such a option buttons and text boxes. A document written to the HTML 2.0 specifications is compatible with almost all browsers on the WWW. |
| HTML 3.0 | 1996 | A proposed replacement that was never widely adopted. |
| HTML 3.2 | 1997 | This version included additional support for creating and formatting tables and expanded the options for interactive form elements. It also supported limited programming using scripts. |
| HTML 4.01 | 1999 | This version added support for style sheets to give Web designers greater control over page layout. It added new features to tables and forms and provide support for international features. This version also expanded HTML's scripting capability and added increased support for multimedia elements. |
| XHTML 1.0 | 2001 | This version is a reformulation of HTML 4.01 in XML and combines the strength of HTML 4.0 with the power of XML. XHTML brings the rigor of XML to Web pages and provides standards for more robust Web content on a wide range of browser platforms. |
| XHTML 1.1 | 2002 | A minor update to XHTML 1.0 that allows for modularity and simplifies writing extensions to the language. |
| XHTML 2.0 | 2004 | The latest version, designed to remove most of the presentation features left in HTML. |
Short Version:
The HTML tag is to be used to inform the browser of content
Styles is to inform how to render that content
Examples of Changes Regarding Style Attribute:
Examples of Changes Regarding Tags:
Element Attribute Examples:
Logical elements versus Physical elements
What is the purpose of the element in the document?
| Inline Element | Identifies | Visual Appearance |
| <abbr> </abbr> | an abbreviation | Plain text |
| <acronym> </acronym> | an acronym | Plain text |
| <b> </b> | boldfaced test | Boldfaced Text |
| <big> </big> | big text | Larger text |
| <cite> </cite> | a citation | Italicized text |
| <code> </code> | program code text | Fixed width text |
| <del> </del> | deleted text | |
| <dfn> </dfn> | a definition term | Italicized text |
| <em> </em> | emphasized text | Italicized text |
| <i> </i> | italicized text | Italicized text |
| <ins> </ins> | inserted text | Underlined text |
| <kbd> </kbd> | keyboard style text | Fixed width text |
| <q> </q> | quoted text | "Quoted text" |
| <s> </s> | strikethrough text | |
| <samp> </samp> | sample computer code | Fixed width text |
| <small> </small> | small text | Smaller text |
| <span> </span> | a generic inline element | Plain text |
| <strike> </strike> | strikethrough text | |
| <strong> </strong> | strong emphasized content | Boldfaced Text |
| <sub> </sub> | subscript | Subscripted text |
| <sup> </sup> | superscripted | Subscripted text |
| <tt> </tt> | teletype text | Fixed width text |
| <u> </u> | underlined text | Underlined text |
| <var> </var> | programming variables | Italicized text |
Tips for HTML Code