Prepared by: Anthony Larrain
Before starting this tutorial see tutorial 1
Unordered Lists
Unordered lists are list items preceded with small black circles called bullets.
Example 1
The bulleted list is placed within the tags <ul>
and </ul>
Each list item is placed within the tags <li>
and </li>
The HTML code creates the above list.
- Guitar
- Bass
- Drums
Example 2
In this example we will write a page that uses a heading, two paragraphs and an unordered list. The code that follows will produce this page. list1.html
My First Webpage
Welcome to my page. I need to learn some more of this HTML so I can provide you with some interesting content.
Such as:
- Photos
- Sound
- Graphics
- Links to other pages
- Etc..