|
List elements are any elements you use in an outline, such as bullets and numbered lists. Like the Form Elements, List Elements use special tags which tell the browser how they are to appear:
|
Element Name
|
Element
|
HTML Tag
|
|
Unordered List
|
|
<UL TYPE="DISC"> <LI>standardbullet</LI> </UL>
|
|
Ordered List
|
- first element
|
<OL TYPE="1"> <LI>first element</LI> </OL>
|
|
There are several variations on the list elements which can be used. These are determined by the specific Type attribute of the UL or OL tags. Because, once again, these elements are not created with images, the browsers are free to interpret them how they like. This means that in different browsers, these elements can take up differing amounts of space.
|