How to define the type attribute of HTML ordered list item marker

5 Answers

0 votes
<!DOCTYPE html>
<html>
    <body>

        <ol type="A">
            <li>HTML</li>
            <li>CSS</li>
            <li>JavaScript</li>
        </ol>

    </body>
</html>

 



answered Dec 14, 2018 by avibootz
0 votes
<!DOCTYPE html>
<html>
    <body>

        <ol type="a">
            <li>HTML</li>
            <li>CSS</li>
            <li>JavaScript</li>
            <li>PHP</li>
        </ol>

    </body>
</html>

 



answered Dec 14, 2018 by avibootz
0 votes
<!DOCTYPE html>
<html>
    <body>

        <ol type="I">
            <li>HTML</li>
            <li>CSS</li>
            <li>JavaScript</li>
        </ol>

    </body>
</html>

 



answered Dec 14, 2018 by avibootz
0 votes
<!DOCTYPE html>
<html>
    <body>

        <ol type="i">
            <li>HTML</li>
            <li>CSS</li>
            <li>JavaScript</li>
            <li>PHP</li>
        </ol>

    </body>
</html>

 



answered Dec 14, 2018 by avibootz
0 votes
<!DOCTYPE html>
<html>
    <body>

        <ol type="1">
            <li>HTML</li>
            <li>CSS</li>
            <li>JavaScript</li>
            <li>PHP</li>
        </ol>

    </body>
</html>

 



answered Dec 14, 2018 by avibootz
...