Appendix D. HTML Cheat Sheet

The following table outlines a few HTML elements which may be useful to you. For more detail or for information about elements which are not listed here, consult one of the references listed below.

Table D-1. Basic HTML elements

Type of informationMarkup
Paragraph<P> ... </P>
Heading level 1<H1>This is a level 1 heading</H1>
Heading level 2<H2>This is a level 2 heading</H2>
Heading level 3<H3>This is a level 3 heading</H3>
Heading level 4<H4>This is a level 4 heading</H4>
Unordered (bulleted) list
		<UL>
		<LI>List item 1
		<LI>List item 2
		<LI>List item 3
		<LI>List item 4
		</UL>
		
Ordered (numbered) list
		<OL>
		<LI>List item 1
		<LI>List item 2
		<LI>List item 3
		<LI>List item 4
		</OL>
		
Table
		<TABLE BORDER>
		<TR>   <-- "table row" -- >
			<TH>Heading for column 1</TH>
			<TH>Heading for column 2</TH>
			<TH>Heading for column 3</TH>
		</TR>
		<TR>   <-- "table row" -- >
			<TD>Data for row 1, column 1</TD>
			<TD>Data for row 1, column 2</TD>
			<TD>Data for row 1, column 3</TD>
		</TR>
		<TR>   <-- "table row" -- >
			<TD>Data for row 2, column 1</TD>
			<TD>Data for row 2, column 2</TD>
			<TD>Data for row 2, column 3</TD>
		</TR>
		</TABLE>
		
Horizontal rule<HR>
Anchor tag (hypertext link)<A HREF="http://example.com/">Descriptive text</A>

For more information...