Please tell me how to write html code to design restaurant menu using ordered and unordered list
Answers
Answered by
0
<!DOCTYPE html>
<html>
<body>
<h2> Restaurant Menu </h2>
<ol>
<li><h3> North Indian </h3></li>
<ul>
<li> Dal Makhni- 200 </li>
<li>Paneer - 250 </li>
<li>Tandoori Roti - 10 </li>
</ul>
<li><h3> Chinese </h3></li>
<ul>
<li> Hakka Noodles - 200 </li>
<li>Spring rolls - 100 </li>
<li> Cheese chilly - 250 </li>
</ul>
</ol>
</body>
</html>
Attachments:
Similar questions