lists are good for

numbered lists are ordered lists

  1. html primer
  2. advanced html
  3. dhtml
  4. cgi scripting
CODE

<html>

<head>

<title>lists of stuff</title>

</head>

<body>

<p>lists are good for</p>

<ul>

<li>good layout</li>

<li type="square">concise explanations</li>

<li type="circle">categorization</li>

</ul>

<p>numbered lists are ordered lists</p>

<ol>

<li>html primer</li>

<li>advanced html</li>

<li>dhtml</li>

<li>cgi scripting</li>

</ol>

<table border="1" width="100%">

<tr>

<td width="100%">CODE

</tr>

</table>

</body>

</html>