0% found this document useful (0 votes)
3K views1 page

Tourist Places HTML Code Single Page

The document contains HTML code for a webpage titled 'Tourist Places'. It includes a header with the title, a section listing cities, and an aside detailing tourist places in Pune. The page is styled with CSS for layout and color.

Uploaded by

akshaysongsong
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3K views1 page

Tourist Places HTML Code Single Page

The document contains HTML code for a webpage titled 'Tourist Places'. It includes a header with the title, a section listing cities, and an aside detailing tourist places in Pune. The page is styled with CSS for layout and color.

Uploaded by

akshaysongsong
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

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

You might also like