How to create ordered HTML list that marked with numbers

1 Answer

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

        <ol>
            <li>HTML</li>
            <li>CSS</li>
            <li>JavaScript</li>
        </ol>

    </body>
</html>

 



answered Dec 14, 2018 by avibootz

Related questions

...