HTML PROGRAM FOR ORDERED AND UNORDERED LIST. [EASY PROGRAM FOR BEGINNERS]
Answers
Answered by
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.
<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
0
<html>
<body>
<ul>
<li>Welcome</li>
<li>To</li>
</ul>
<ol>
<li>HTML</li>
<li>Demo Class</li>
</ol>
</body>
</html>
<body>
<ul>
<li>Welcome</li>
<li>To</li>
</ul>
<ol>
<li>HTML</li>
<li>Demo Class</li>
</ol>
</body>
</html>
Similar questions