ITS Home Tech Support Laptop Program E Learning Media Services Communications

Web Services Home

How to obtain Webspace

Course1

Desire2Learn

Web Accessibility Guidelines

WSU Web Policy

HTML Tutorial

FTP Tutorial

Student Webs

Student Clubs

Webmail

 

Unordered Lists

The Un-numbered List is the first of the three types of lists. This is probably the most common list you will use.

What you type: What you see:
<ul>
<li>Bread
<li>Cereal
<li>Cookies
<li>Frozen pizzas
<li>Ice Cream
</ul>

  • Bread
  • Cereal
  • Cookies
  • Frozen pizzas
  • Ice Cream

The <ul> tag is the opening Unordered List tag. Between these two tags you place List Items, each one having an individual <li> opening tag. You can use an optional </li> closing tag, but it is not needed. There is no limit to the number of List Items you may have in a single list.

<---Back to Combining Links and Images    On to Ordered Lists--->