How to create ordered HTML list that numbered with roman numbers

2 Answers

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

Related questions

...