creat a programme of ol and ul in html
Answers
Answered by
3
Answer:
<html>
<head>
<title>creating list</title>
</head>
<body>
<ol>
<li>mango</li>
<li>apple</li>
<li>banana<li>
</ol>
<ul>
<li>grapes</li>
<li>pineapple</li>
<li>watermelon</li>
</ul>
</body>
</html>
Explanation:
ol - is for ordered list ( 1234 )
ul - is for unordered list ( bullets)
li - is for listing
Similar questions