Section 1 - Introduction
Section 2 - Basics
Section 3 - Next Level
Section 4 - Advanced
Fancy Lists
Compact lists
Nesting lists
Unordered types
Ordered types
Start numbers
Putting it together
You Try It!
Forms
Advanced Tables
Frames
Style Sheets
Image Maps
Section 5 - Publishing
Section 6 - Extras
Appendices
|
You try it!
Idea: Use fancy lists in a document.
Here's an example: Here's a semi-complex list set. Practice nesting lists and modifying list types and numbers.
<html> <head>
<title> List Horror </title>
</head>
<body bgcolor="#ccccff" text="#006666" link="#0033ff" vlink="#00cccc">
<ol start="6">
<li> June
<ul type="circle">
<li> Flag Day </li>
<li> Father's Day </li>
</ul>
</li>
<li> July
<ul type="circle">
<li> Independence Day </li>
</ul>
</li>
<li> August
</li>
</ol>
</body> </html> |
You now should work on your own webpage. Add a list or two onto your page where appropriate.
|