Introduction To HTML
Bullets & Numbering

There are two types of list, ordered lists where numbers are used as markers or unordered lists which use bullets to mark each list item.

Ordered Lists Unordered Lists
<ol type="1"> values for type: 1,i, A, a,I
<li>Item 1</li>
<li>Item2</li>
</ol>
<ul type="circle"> values for type: disc, square, circle
<li>Item 1</li>
<li>Item2</li>
</ul>

Exercise 6

Open your page of links (Exercise 5). Alter your HTML so that the links are now in a bulleted list. Save, view and print your work.