Computer Science, asked by YadavRahul1841, 1 year ago

How to wirte HTML code of ordered list and unordered list

Answers

Answered by hiteshkhannasweet
8
<html>
<head>
<title>Code for simple ordered and unordered list
</title>
</head>
<body>
<ul>Unordered list
<li>Any name
<li>Any name
<li>Any name
</ul>
<ol>
<li>Any name
<li>Any name
<li>Any name
</ol>
</body>
</html>
Similar questions