tourist place
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tourist Places</title>
<style>
section{
background-color: rgb(255, 255, 133);
width: 50%;
height: 50%;
float: left;
outline-style: solid;
font-size: 30px;
}
aside{
background-color: pink;
width: 50%;
height: 50%;
padding: 0px;
float: right;
outline-style: solid;
font-size: 30px;
}
</style>
</head>
<body>
<header style="background-color: lightblue; text-align: center;
height: 30%; font-size: 40px; outline-style: solid; padding: 40px;">
<h3 style="color: deeppink; margin: 0px;">Tourist Places</h3>
</header>
<section>
<b>City</b>
<ol>
<li>Pune</li>
<li>Banglore</li>
<li>Hyderabad</li>
<li>Delhi</li>
</ol>
</section>
<aside>
<b>
Tourist Places in Pune
</b>
<ul>
<li>Shanivarwada</li>
<li>Kelkar Museum</li>
<li>Sinhgad Fort</li>
<br>
</ul>
</aside>
</body>
</html>
Comments
Post a Comment