|
<HTML> <HEAD> <TITLE>Unordered Lists</TITLE> </HEAD>
<BODY> <H1>Unordered Lists</H1>
<P>the following is a simple list:</P> There are three primary colors: <ul> <li>Red <li>Green <li>Yellow </ul>
<HR> <P>the following is a nested list:</P> Two of the four seasons are: <ul> <li>Spring, which is characterized by: <ul>
<li>Sunshine <li>Flowers </ul> <li>Summer, which is characterized by: <ul>
<li>Heat <li>Humidity </ul> </ul> <HR>
<P>the following illustrates the ability to change bullet shapes:</P> Two of the four seasons are: <ul type=circle> <li>Spring, which is characterized by:
<ul type=square> <li>Sunshine <li>Flowers </ul>
<li>Summer, which is characterized by: <ul> <li type=disc>Heat
<li type=square>Humidity </ul> </ul> </BODY> </HTML> |