Tourist Places HTML Code
<html>
<head>
<title>Tourist Places</title>
<style>
header {
background-color: skyblue;
height: 25%;
width: 99%;
border: 3px solid;
}
section {
background-color: yellow;
height: 49%;
width: 49%;
float: left;
border: solid;
}
aside {
background-color: pink;
height: 49%;
width: 49%;
float: left;
border: solid;
}
</style>
</head>
<body>
<header>
<h1 style="text-align: center; color: deeppink; font-size: 36px;">
Tourist Places
</h1>
</header>
<section>
<h2>City</h2>
<ol>
<li>Pune</li>
<li>Bangalore</li>
<li>Hyderabad</li>
<li>Delhi</li>
</ol>
</section>
<aside>
<h2>Tourist Places in Pune</h2>
<ul>
<li>Shaniwarwada</li>
<li>Raja Kelkar Museum</li>
<li>Sinhagad Fort</li>
</ul>
</aside>
</body>
</html>
Page 1