Computer Science, asked by rinku6666, 9 months ago

HTML code to make list and item in order list 10 item in unother list​.....


please answer this

Answers

Answered by dipayanghosh185
2

Answer:

<!DOCTYPE html>

<html>

<body>

<h2>An Unordered HTML List</h2>

<ul>

 <li>Coffee</li>

 <li>Tea</li>

 <li>Milk</li>

</ul>  

<h2>An Ordered HTML List</h2>

<ol>

 <li>Coffee</li>

 <li>Tea</li>

 <li>Milk</li>

</ol>

</body>

</html>

Explanation:

Similar questions