HTML <li> Tag

Description:

The <li> tag is used for specifying a list item in ordered, unordered, directory, and menu lists.

 

Specific Attributes:

Attribute Definition
type Specifies the type of bullet. Possible values:
  • A
  • a
  • I
  • i
  • 1
  • disc
  • square
  • circle
-Deprecated- Use CSS Instead
value Specifies the number of the current list item.
-Deprecated-

Other Attributes:

Attribute Definition
dir

Specifies the text direction for the content in an element.
Possible Values:

  • rtl  (Right to Left)
  • ltr  (Left to Right)
class Specifies a classname for an element.
id Specifies a unique id for an element.
lang Specifies a language code for the content in an element.
title Specifies a title to associate with the element. Many browsers will display this when the cursor hovers over the element (similar to a "tool tip").
style Specifies an inline style for an element.

Example Code:

<ul>
  <li>Mouse</li>
  <li>Cat</li>
  <li>Dog</li>
</ul>

Result
  • Mouse
  • Cat
  • Dog