HTML Ordered Lists
HTML
Ordered Lists
If you are
required to put your items in a numbered list instead of bulleted, then HTML
ordered list will be used. This list is created by using <ol> tag.
The numbering starts at one and is incremented by one for each successive
ordered list element tagged with <li>.
<!DOCTYPE html>
<html>
<head>
<title>HTML Ordered
List</title>
</head>
<body>
<ol>
<li>Beetroot</li>
<li>Ginger</li>
<li>Potato</li>
<li>Radish</li>
</ol>
</body>
</html>
The type
Attribute
You can use type
attribute for <ol> tag to specify the type of numbering you like. By
default, it is a number. Following are the possible options:
<ol type="1"> -
Default-Case Numerals.
<ol type="I"> -
Upper-Case Numerals.
<ol type="i"> -
Lower-Case Numerals.
<ol type="a"> -
Lower-Case Letters.
<ol
type="A"> - Upper-Case Letters.
<!DOCTYPE html>
<html>
<head>
<title>HTML Ordered
List</title>
</head>
<body>
<ol type="1">
<li>Beetroot</li>
<li>Ginger</li>
<li>Potato</li>
<li>Radish</li>
</ol>
</body>
</html>
Comments
Post a Comment