Computer Science, asked by srishti03, 1 year ago

HTML PROGRAM FOR ORDERED AND UNORDERED LIST. [EASY PROGRAM FOR BEGINNERS]

Answers

Answered by nbnbishtow3g8x
3
<!DOCTYPE html>
<html>
   <body>
     
     <ul>
        <li>unorder list item 1</li>
        <li>unorder list item 2</li>
     </ul>

     <ol>
        <li>order list item 1</li>
        <li>order list item 2</li>
     </ol>

   </body>
</html>

This is the simplest program to show unordered and ordered list. You just need to use UL for unordered list and OL for ordered list followed by LI which is used as list item. 

srishti03: thnx a lot
Answered by siddhartharao77
0
<html>
<body>

<ul>
<li>Welcome</li>
<li>To</li>
</ul>

<ol>
<li>HTML</li>
<li>Demo Class</li>
</ol>

</body>
</html>
Similar questions