Making ListsThere are three types of lists that can be used to organize information within an HTML doccument. They are the Bulleted list (sometimes called a menu, directory, or unordered list), the numbered (or ordered) list, and the deffinition list. Each is discussed further in a sub-section below. Making a Bulleted ListBulleted lists are useful when you want to convey several points quickly, and in an easy-to-read format. People in this age have very little patience, and tend not to read all of....Hey! Where are you going! Come back! You will most often see bulleted lists
used as lists of links, both internal and external. To
make a list, place this:
Will look like this on the browser screen:
| |
How to Make a Numbered ListTo get numbers instead of bullets,
replace the
With numbered lists, there are a couple different attributes that can be applied. You can use the "type=" attribute described above; the values for numbered lists are "A" which produces capital letters, "a" which creates lower case letters; "I" which yields traditional Roman numerals, and "i" which gives you index marks, or "lower-case Roman numerals" if you prefer. The second attribute is start="#" where the pound (#) is any integer. This will start the list at a number (or letter) other than 1. In the case of letters, numbers above 26 will cause the letters to begin doubling up, just like in a spreadsheet (AA=27, AB=28, etc). How to Create a Deffinition List
The list above is the third and final list type that this page deals with: The deffinition list. It is most commonly found on instructive home pages, and can be very useful for creating a how-to page, and/or a glossary of terms. Here is the above list with the HTML tags visible:
There is only one attribute that can be added to a
Gives us the following list:
You can add as many items as you like to the list,
just make sure to finish the job by ending the list with
| |