Organization of a web page is probably the single most important characteristic that contributes to the success or failure of a web page. One of the most useful techniques is to be able to create lists within your web page.
Unordered Lists
Definition List
Another example...here's the code...
<center><h1>Ramen Noodle Instructions</h1></center>
<p>
<ol>
<li>boil water.</Li>
<li>add ramen noodles.</Li>
<li>boil 5 minutes.</Li>
<li>add flavor pack and stir.</Li>
<li>eat</li>
</ol>
...creates this:
Another example...here's the code...
<center><h1>Cute Pets</h1></center>
<p>
<UL>
<li>Cat</li>
<li>Dog</li>
<li>Hamsters</li>
<li>Add flavor pack and stir.</Li>
<li>eat</li>
</UL>
Creates this:
Another example...here's the code...
<center><h1>Cute Pets</h1></center>
<p>
<dl>
<DT>Cat</DT>
<DD> - Couldn't care less...</DD>
<DT>Dog</DT>
<DD> - Will love you to death!</DD>
<DT>Hamsters</DT>
<DD> - Yummy! Cats love'em.</DD>
</dl>
Creates this:
So simply put, ordered lists are numbered, unordered lists are bulleted.
Create a new html file called "lists.htm" that includes an example of all three lists. Make sure it works correctly by viewing it with the browser. Email it to me..
Back to the outline.