用HTML写一个城市旅游首页
时间: 2023-12-29 10:32:40 浏览: 83
城市旅游景点介绍网站html静态模板
5星 · 资源好评率100%
当然可以!以下是一个简单的示例,展示了一个城市旅游的首页。
```html
<!DOCTYPE html>
<html>
<head>
<title>城市旅游首页</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
nav {
background-color: #f5f5f5;
padding: 10px;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
text-align: center;
}
nav ul li {
display: inline-block;
margin-right: 10px;
}
nav ul li a {
color: #333;
text-decoration: none;
padding: 5px 10px;
}
main {
margin: 20px;
}
h1 {
color: #333;
}
p {
margin-bottom: 10px;
}
.highlight {
color: #f00;
}
</style>
</head>
<body>
<header>
<h1>Welcome to City Tours</h1>
<p>Explore the best attractions in our city</p>
</header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Attractions</a></li>
<li><a href="#">Tours</a></li>
<li><a href="#">Events</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<main>
<h1>Discover Our City</h1>
<p>Welcome to City Tours, your gateway to discovering the best that our city has to offer. Whether you are looking for cultural experiences, natural wonders, or exciting events, our city has it all.</p>
<h2>Popular Attractions</h2>
<p>Explore the following popular attractions:</p>
<ul>
<li>The City Museum</li>
<li>The Botanical Gardens</li>
<li>The Historical Landmarks</li>
</ul>
<h2>Guided Tours</h2>
<p>Join our guided tours to get an in-depth experience of the city:</p>
<ul>
<li>Historical Walking Tour</li>
<li>City Architecture Tour</li>
<li>Nature Hiking Tour</li>
</ul>
<h2>Upcoming Events</h2>
<p>Don't miss these exciting upcoming events:</p>
<ul>
<li>City Music Festival - June 15th</li>
<li>Food and Wine Expo - July 3rd</li>
<li>Art Exhibition Opening - August 10th</li>
</ul>
<h2>Contact Information</h2>
<p>If you have any questions or need assistance, please contact us:</p>
<p>Email: info@citytours.com</p>
<p>Phone: 123-456-7890</p>
</main>
</body>
</html>
```
这只是一个简单的示例,你可以根据自己的需要进行修改和美化。希望能对你有所帮助!
阅读全文