the complete webmaster
tutorials reviews reference
ASP
CGI
FrontPage
HTML
Java
JavaScript

home / reference / html

<li></li>
type   value

The <li> tag is used in conjuntion with the <ol> tag or <ul> tag to create list items for an ordered or unordered list.

Code
   <ol>
<li>LIST ITEM ONE
<li>LIST ITEM TWO
</ol>
Appearance
  
  1. LIST ITEM ONE
  2. LIST ITEM TWO

<li type="">

   Description
   The type attribute is used to define what type of numbering system your list item will use. Not using this attribute defaults the type to type declared in the <ol> tag or <ul> tag. Other acceptable values include "A", which uses uppercase letters starting with A; "a", which uses lowercase letters starting with a; "I", which uses uppercase Roman Numerals starting with I; and "i", which uses lowercase Roman Numerals starting with i.
Code
   <li type="A">YOUR TEXT HERE</li>
Appearance
  
  1. YOUR TEXT HERE

<li value="">

   Description
   The value attribute is used to define what number in the list will be displayed for the attributed list item.
Code
   <li value="5">YOUR TEXT HERE</li>
Appearance
  
  1. YOUR TEXT HERE
write for us about us advertise

Copyright 1997, 1998 A Big Lime. All rights reserved.