Make My Own Web Page

Free HTML Tutorial

Item Lists

Unordered List
<ul>
   <li>Make my own web site</li>
   <li>Make my own web page</li>
</ul>

Web page should look like this.

  • Make my own web site
  • Make my own web page

     The <ul></ul> tags make the unordered list. This list is not numbered. The <li></li> tags surround each item of the list.

more details...



Unordered List with square bullets
<ul type=square >
   <li>Make my own web site</li>
   <li>Make my own web page</li>
</ul>
Web page should look like this.

  • Make my own web site
  • Make my own web page

     Bullets can be of several different shapes including circle, square or disc.

more details...



Unordered List with square and circle bullets
<ul>
   <li type=square >Make my own web site</li>
   <li type=disc >Make my own web page</li>
</ul>
Web page should look like this.

  • Make my own web site
  • Make my own web page

     You can even use different bullets for each item. Maybe you might want to highlight a new item. This is a way you could do that.

more details...



Ordered List
<ol>
   <li>Make my own web site</li>
   <li>Make my own web page</li>
</ol>
Web page should look like this.

.
.
  1. Make my own web site
  2. Make my own web page
.
.

     The <ol></ol> tags make the ordered list. The only real difference between the unordered and ordered list is the numbering system or the lack of numbering. Again the <li></li> tags surround each item of the list.

more details...



Ordered List with different numbering systems
<ol type=i >
   <li>Make my own web site</li>
   <li>Make my own web page</li>
</ol>
Web page should look like this.

.
.
  1. Make my own web site
  2. Make my own web page
.
.

     These lists can use different numbering systems. In the example above, the i was used for lowercase Roman. An I would be used for uppercase Roman and an A or an a would be used for uppercase or lowercase lettering.

more details...



Main - Making My Own Web Page HTML Basics HTML Text HTML Images HTML Tables HTML Links NEXT


Phone: (208)467-6236
FAX: (208)463-9363
mtg@makemyownwebpage.com
mtg@makemyownwebpage.com
MTG EnterPrizes
511-9th Ave. N.
Nampa, Id 83687-3347

Page Created and
Maintained by
MTG EnterPrizes
All Rights Reserved © 2002-08
www.makemyownwebpage.com/tutor/html-list.htm