Day 2 Exercise 7
We're going to take that short list of links-- links.htm-- and
change the paragraph listing of links into first a bullet list,
and then into a descriptive list, with annotations. Descriptive
lists are very useful ways of organizing lists of related or
favorite sites.
Part 7.1: Create an Unordered List.
- Go back to your links.htm file in Wordpad.
- At the top of the list (BEFORE the first entry), insert
<UL> (the "start unordered list" tag).
- At the bottom of the list (AFTER the last entry), insert
</UL> (the "end unordered list" tag).
- Change the <P> tags in front of each item to
<LI> tags, making each of them a "list item".
- Choose Save from the File menu to save the changes you've
made to the file.
- Use WIN FTP to upload the file again.
- Click Reload (or use "Open File in Browser") to view the new
version of the page.
Part 7.2: Create a Definition List.
Definition Lists (<DL>) are slightly more complex than Ordered or
Unordered Lists. Each item in a definition list has two types of
information: the Title (<DT>) and the definition(s) (<DD>); each
DT can have more or less than one DD under it.
- Change the start and end tags (<UL> </UL>) to <DL>
</DL>.
- Change the <LI> tags to <DT>.
- After each site on the list, add <DD> tag
followed by a short description.
- Save the file.
- Upload the saved copy to your webspace with Win FTP.
- Click Reload (or use "Open File in Browser") to view the new version
of the page.
End of Exercise.
JAH, September 10, 1997.