Computer Science, asked by yyashoda937, 7 months ago

give a HTML program on ordered and unordered list​

Answers

Answered by Anonymous
13

\huge{\mathfrak{\underline{answer}}}

<html>

<head> <title> html lists </title> </head>

<body>

<h1> an ordered list </h1>

<ol>

<li> item 1</li>

<li> item 2</li>

<li> item 3 </li>

<li> item 4 </li>

</ol>

<h1> an unordered list</h1>

<ul>

<li> item 1</li>

<li> item 2</li>

<li> item 3 </li>

<li> item 4 </li>

</ul>

</body>

</html>

Similar questions