Stats
6 visitors online
Guests: 6
Registered: 0
6 visitors online
Guests: 6
Registered: 0
Search
Login
Website Building → Tutorials → HTML: Lists! (Part 6)
Lists are often useful for, obviously, listing things. They are very easy to use and make a very useful trick!
Unordered lists look like this:
|
<ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul> |
Ordered lists look like this:
|
<ol> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ol> |
You can also choose a start point for ordered lists:
|
<ol start="5"> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ol> |
Note how we used a "start" attribute for the ordered HTML Tutorial index at the bottom of each page of this tutorial
