HTML Lists
In HTML, you can have bullet point or numbered
lists. You can also use lists for creating glossaries
and for just plain indentation.
A Numbered List is Called an "Ordered List"
- This is an example of an ordered list.
- The information is numbered sequentially.
- It uses the tag: OL
- Each item within a list is designated by
the tag LI (list item).
You Can Use Other Numbering Schemes
- To get upper case Roman numerals, use the
OL tag with the attribute and value of: TYPE="I"
(in case you can't tell, that value is an upper case letter "i")
- The other available numbering TYPEs are: i, A, a
- The START attribute allows you to specify an initial
value for an ordered list other than the default of one.
- See the example of a different START value in the Nested
Lists section below.
Bullet Points Are Called an "Unordered List"
By default, unordered list items use a solid black circle called a bullet. However, nested unordered list items use different symbols. Solid bullets
are for the top level, followed by a hollow CIRCLE
then a SQUARE. Squares are also used for all subsequent sub-lists.
- A bulleted list is called an UNordered list; the tag is UL.
- There are other bullet symbols available.
- The other bullet types are:
- CIRCLE and...
- These other bullet symbols are displayed automatically when you nest lists (see next section).
- They can also be designated with the TYPE attribute (for example: TYPE="CIRCLE").
- CSS is also capable of displaying the other types, or even small images, instead of bullets.
Nested Lists
The unordered (bulleted) list above contains two nested lists. The first nested list includes three list items. By default, the list items in a first nested list are usually displayed with hollow circles at the start of each list item. The list that is nested within the first nested list has only one list item ("SQUARE") and uses a small black square instead of a solid bullet or hollow circle.
Subordinating a nested list within a parent list
When you nest a list inside another list (a parent list), the nested (child) list is treated as if it were a part of the list item in the parent list above it. The closing </li> tag for the list item that is before a nested list begins (before the child list's opening <ul> or <ol> tag) comes after the closing nested list's closing tag ( </ul> or </ol> ). To create a list within another list (referred to as a child, sub-list, or nested list):
- Start the primary list out with one or more list items.
- Do not put a closing list item tag on the list item that comes immediately before the nested list begins. The nested list is considered to be a part of the list item of the parent list that comes before the nested list.
- Put in an opening list tag (ol or ul). This will begin the nested list.
- Then create as many nested list items ( <li> ) for the nested list as you need, each with its own opening and closing ( </li> ) tags.
- After the last nested list item's closing tag, put in the nested list's closing tag (/ol or /ul).
- Then close the list item tag for the list item that came before the opening sub-list tag (as referred to in step 2).
- Then continue normally with the list items for the primary list.
- Then close it as usual with a < /ul > or < /ol> closing tag.
Note that you can
nest ordered lists within unordered lists and vice versa, as you will see in the example below.
Specifying a Starting Number
Here is another example of a nested list. That primary list includes specifying
a different start number:
- Lists in HTML have many options.
- First is the ability to number items sequentially.
- That is called an ordered list.
- You can also specify the starting number by using the START
attribute.
- This list was set to start at 3.
- Bullet points can be created using an unordered list.
- There are different styles of bullets.
- An empty circle designates a second level bullet point.
- When you return to the un-nested list, it sometimes
picks up where it left off, numerically.
- When you test nested lists in a browser you may find
that you need to add the VALUE=n attribute
(substitute the number you want for n) to the
list item tag that is immediately after the nested list
in order to to get the numbering restarted properly.
Indenting With Lists
You can use the UL or OL tag without any LI tags to create an
indentation on the left side. If
you look at the code you can see how it's done here. Indenting this way affects only the left margin whereas indenting with the BLOCKQUOTE tag indents from both margins. Using a list tag in this way is a hack. Indentation of this type is usually done now with the css margin property.
Your assignment:
- Save this file as F01_yourlastname.html
- Modify the second ordered list on the page
(which now uses Roman numerals) to use the
lower case alphabet (a, b, c, etc.).
- Change the starting number of the last list
above to 10 (it starts at 3 now).
- Copy THIS list of instructions (all
8 items) and paste it below this list
of instructions (above the copyright).
- Change the list you just pasted into
an UNordered list (that means bullet points).
- In your newly bulleted list, create
a "nested" ORDERED (numbered)
sub-list of 3 items within it by converting
the third through fifth list items from
being unordered to ordered. This means
that the original list items 3, 4, and
5 (the lines starting with the words:
Change, Copy, and Change) ought to end
up being nested and numbered and the other items
bulleted. IMPORTANT: Re-read the section above Subordinating a nested list within a parent list before doing this part of the assignment.
- Save your file. Check it in the browser.
- Online students: send your file to me by email the usual way.
© 2012 Dan Vaughan and its licensors. All rights reserved.