Intermediate HTML Tutorial: Unordered
Lists
Home > Build
> Programming > HTML
> Intermediate HTML Tutorial
1.4 Unordered Lists
Unordered Lists are lists with bullet points
instead of a sequential numbering system. They are used and
created in the exact same fashion as Ordered Lists, just with
the <UL> tag. As with Ordered Lists, Unordered Lists
can also be nested to create sublists.
Here is the first list we used, only Unordered.
<HTML>
<HEAD>
<TITLE>Unordered Lists</TITLE>
</HEAD>
<BODY>
<UL>
<LH><STRONG>Some HTML tags that are good to know<STRONG><BR>
<LI>title
<LI>p
<LI>font
<LI>img
<LI>a
<LI>hr
</UL>
</BODY>
</HTML>
See
it in the Browser
There are different ways to display an Unordered
List. Like the <OL> tag, the <UL> tag has a TYPE
attribute. The different types to choose from are square,
disc, and circle.
Here is the same example 3 times, with the different
types:
Square
Disc
Circle
There is another type of list called the <MENU>
list. It is displayed virtually identically as an Unordered
List. It's only purpose for existing within HTML is that some
users may have preferences set in their browsers for some
MENU lists, and also as definition for further objects in
future versions of HTML. Today, the <MENU> tag is almost
useless.