Lowercase Roman Numbers

HTML Lowercase Roman Numbers is use the “type” attribute within the <ol> tag, set to “i” for an ordered list with lowercase Roman numeral enumeration.

Example: In this example we displays an ordered list with lowercase Roman numerals (i, ii, iii, iv, etc.), utilizing the “type” attribute within the <ol> tag.

HTML
<!DOCTYPE html>
<html>
    <head>
        <title>
            Lowercase Roman Numbers Ordered List
        </title>
    </head>
    <body>
        <h2>
            Lowercase Roman Numbers Ordered List
        </h2>
        <ol type="i">
            <li>First item</li>
            <li>Second item</li>
            <li>Third item</li>
            <li>Fourth item</li>
        </ol>
    </body>
</html>

Output:

Lowercase Roman Numbers Ordered List Example Output

HTML Ordered Lists

HTML Ordered List is created by the HTML <ol> tag, to display elements in an ordered form, either numerical or alphabetical. Within the <ol> tag, list items <li> are used to define the items in sequential order.

Syntax:

<ol>
<li>...</li>
<li>...</li>
<li>...</li>
</ol>

Similar Reads

Ordered List Type Attribute with Value

The type attribute of

    tag specifies the order we want to create....

Types of HTML Ordered Lists

Table of Content Number ListUppercase LettersLowercase LettersUppercase Roman NumbersLowercase Roman NumbersControl List CountingNested Ordered Lists...

Number List

HTML Numbered Lists

    tag creates an ordered list. Each item is listed sequentially, typically denoted by numbers....

Uppercase Letters

HTML Uppercase Letters Utilize the “type” attribute within the

    tag, set to “A” to generate an ordered list with uppercase alphabetical enumeration....

Lowercase Letters

HTML Lowercase Letters Utilize the “type” attribute within the

    tag, set to “a” to create an ordered list with lowercase alphabetical numbering....

Uppercase Roman Numbers

HTML Uppercase Roman Numbers is set by the “type” attribute within the

    tag to “I” for an ordered list with uppercase Roman numeral enumeration....

Lowercase Roman Numbers

HTML Lowercase Roman Numbers is use the “type” attribute within the

    tag, set to “i” for an ordered list with lowercase Roman numeral enumeration....

Control List Counting

HTML Control List Counting we use the “start” attribute within the

    tag to specify the starting number for ordered lists, customizing counting....

Nested Ordered Lists

HTML Nested Ordered Lists use

    within
  1. tags to create sublists, enhancing organization and structure for hierarchical content presentation....

Contact Us