|
|
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
| |
- LIST ITEM ONE
- 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
|
<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
|
|