HTML Lists
Three types of list
- Unordered List
- Ordered List
- Definition List
Unordered List
Example:
- Hello from WebCodeGuide!
- Nice list!
- Last list item!
<UL>
<LI>Hello from WebCodeGuide</LI>
<LI>Nice list!</LI>
<LI>Last list item!</LI>
</UL>
Ordered List
Example:
- Hello from WebCodeGuide!
- Nice list!
- Last list item!
<OL>
<LI>Hello from WebCodeGuide</LI>
<LI>Nice list!</LI>
<LI>Last list item!</LI>
</OL>
Definition List
Example:
- Lower cost
- The new version of this product
- Easier to use
- We've changed the product so that it's much easier to use!
- Safe for kids
- You can leave your kids alone in a
<DL>
<DT><STRONG>Lower cost</STRONG>
<DD>The new version of this product
<DT><STRONG>Easier to use</STRONG>
<DD>We've changed the product
<DT><STRONG>Safe for kids</STRONG>
<DD>You can leave your kids alone
</DL>