Computer Science, asked by ayush6828, 2 months ago

create a webpage with the list (both ordered & unordered list)​

Answers

Answered by VISHALKUMARV22
6

<html>

<body>

Ordered Lists -

<ol>

         <li>List Items</li>

         <li>List Items</li>

        <li>List Items</li>

</ol>

Unordered Lists -

<ul>

         <li>List Items</li>

         <li>List Items</li>

        <li>List Items</li>

</ul>

</body>

</html>

Similar questions