How to create ordered HTML list that numbered with letters

2 Answers

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="a">
            <li>HTML</li>
            <li>CSS</li>
            <li>JavaScript</li>
            <li>PHP</li>
            <li>Bootstrap</li>
        </ol>

    </body>
</html>

 



answered Dec 14, 2018 by avibootz

Related questions

...