Write HTML code to create following output by using unordered list.
- Get link
- X
- Other Apps
Write
HTML code to create following output
by using unordered list.
Mharashtra Madhypradesh Uttarpradesh
1
Nagpur 1 Bhopal 1 kanpur
2
Wardha 2 Indor 2 Azamgad
3
Mumbai 3 Ujjain 3 Haridwar
<!DOCTYPE html>
<html>
<head>
<title>Unordered
list</title>
</head>
<body>
<h1><center> Unordered
List</h1>
<table align="center"
cellspacing="4" cellpadding="5">
<tr>
<td><b> Maharashtra</b></td>
<td><b> Madhypradesh</b></td>
<td><b> Uttarpradesh</b></td>
</tr>
<tr>
<td><ul type=disc>
<li>Nagpur</li>
<li>Wardha</li>
<li>Mumbai</li>
</ol>
<td><ul type=square>
<li>Bhopal</li>
<li>Indor</li>
<li>Ujjain</li>
</ol>
<td><ul type=circle>
<li>Kanpur</li>
<li>Azamgad</li>
<li>Haridwar</li>
</ol>
</tr>
</table>
</center>
</body>
</html>
Comments
Post a Comment