BW Network
    Login | Register 

Stats
6 visitors online
Guests: 6
Registered: 0



SafeSurf Logo

Website BuildingTutorials → 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:

  • Item 1
  • Item 2
  • Item 3
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>

Ordered lists look like this:

  1. Item 1
  2. Item 2
  3. Item 3
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>

You can also choose a start point for ordered lists:

  1. Item 1
  2. Item 2
  3. Item 3
<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

→ Tables →


  1. Introduction
  2. The Basics
  3. HREF Linking
  4. Colors & Backgrounds
  5. Hexadecimal Color Codes
  6. Using Images
  7. Lists, lists & more lists!
  8. Tables
  9. More HTML Tags!