1. Home
  2. Computing & Technology
  3. Web Design / HTML

How To Create an Unordered List

By Jennifer Kyrnin, About.com

Unordered or bulleted lists are lists of items that can appear in any order.

Difficulty: Easy
Time Required: 5 minutes

Here's How:

  1. Start your list with the <ul> tag:
    <ul>
  2. Your first list item starts with the <li> tag:
    <ul>
    <li>
  3. Then write the text in the list item:
    <ul>
    <li>list item 1
  4. Close your list item:
    <ul>
    <li>list item 1</li>
  5. Repeat steps 2 through 4 for each list item in your list.
  6. Close the list tag:
    <ul>
    <li>list item 1</li>
    <li>list item 2</li>
    <li>list item 3</li>
    </ul>
More Web Design / HTML How To's

Explore Web Design / HTML

More from About.com

  1. Home
  2. Computing & Technology
  3. Web Design / HTML
  4. HTML and XHTML
  5. XHTML
  6. HTML Tags
  7. How to Create an Unordered List - Bulleted Lists

©2008 About.com, a part of The New York Times Company.

All rights reserved.