Basic Document Structure |
- <HTML> ... </HTML> - Encloses an entire HTML document
- <HEAD> ... </HEAD> - Blocks out the document head area
- <TITLE> ... </TITLE> - Encloses the document title
- <BODY> ... </BODY> - Encloses the documents body text
|
Formatting |
- <H1> ... </H1> - Level 1 head
- <H2> ... </H2> - Level 2 head (goes up to Level 6)
- <B> ... </B> - Boldface
|
Line Breaks |
- <P> - Paragraph break (2 lines)
- <BR> - Line break (1 line)
- <HR> - Draws horizontal line
|
Lists |
- <UL> ... </UL> - Encloses a bulleted list
- <OL> ... </OL> - Encloses a numbered list
- <LI> - Indicates a list item
- <DL> ... </DL> - Encloses a glossary list
- <DT> - Indicates the term being defined in a glossary list
- <DD> - Indicates the definition for the above term
|
Links |
- <A >... </A> - Hypertext anchor or link
|
Text |
- <PRE> ... </PRE> - Encloses text that will be read "as is"
- <FONT> ...</FONT> - Describes a particular font (must be present on local system). Attributes allow the specification of color, family and size
|