Nested List
Wed May 06 2026 13:48:28 GMT+0000 (Coordinated Universal Time)
Saved by
@ayush2013
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Title</title>
</head>
<body>
<h1>Today We Learn Order List</h1>
<ol type="1">
<li>Apple</li>
<li>Mango</li>
<li>Grapes</li>
<li>Banana</li>
<li>Orange</li>
</ol>
<h1>Today We Learn Unorder List</h1>
<ul type="square">
<li>Momos</li>
<li>Burger</li>
<li>Pizza</li>
<li>Chaumeen</li>
<li>Hot Dog</li>
</ul>
<h1>Today We Learn Definition List</h1>
<dl>
<dt>Even No.</dt>
<dd>No. is divisible by 2</dd>
</dl>
</body>
</html>
content_copyCOPY
Comments