lists are good for
numbered lists are ordered lists
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> |