写一个完整的HTML5网页设计主题为南京旅游
时间: 2024-02-19 11:02:42 浏览: 128
南京风景和美食HTML网页+实验报告(完整版)
5星 · 资源好评率100%
好的,下面是一个完整的HTML5网页设计,主题为南京旅游。这个网页包含导航栏、头部、主体内容和页脚,展示了南京的历史文化和旅游景点。您可以根据需要进行修改和优化。
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>南京旅游</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
/* 添加一些基本样式 */
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #f2f2f2;
}
header {
background-color: #333;
padding: 20px;
text-align: center;
color: white;
font-size: 24px;
}
nav {
background-color: #4CAF50;
overflow: hidden;
}
nav a {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
nav a:hover {
background-color: #ddd;
color: black;
}
section {
padding: 20px;
margin: 20px;
background-color: #fff;
min-height: 500px;
}
footer {
background-color: #333;
padding: 20px;
text-align: center;
color: white;
}
h2 {
color: #4CAF50;
font-size: 28px;
}
h3 {
color: #666;
font-size: 24px;
margin-bottom: 10px;
}
p {
line-height: 1.5;
font-size: 18px;
margin-bottom: 20px;
}
img {
max-width: 100%;
height: auto;
margin-bottom: 20px;
}
ul {
list-style: none;
padding: 0;
margin: 0;
}
li {
padding-left: 20px;
position: relative;
font-size: 18px;
line-height: 1.5;
margin-bottom: 10px;
}
li:before {
content: "•";
position: absolute;
left: 0;
color: #4CAF50;
}
</style>
</head>
<body>
<header>
<h1>南京旅游</h1>
</header>
<nav>
<a href="#">首页</a>
<a href="#">历史文化</a>
<a href="#">美食推荐</a>
<a href="#">旅游攻略</a>
<a href="#">联系我们</a>
</nav>
<section>
<h2>欢迎来到南京旅游</h2>
<p>南京是中国六大古都之一,历史悠久,文化底蕴深厚。这里有许多美丽的旅游景点和美食,是一个值得一游的城市。</p>
<h3>历史文化</h3>
<p>南京曾是中国的首都,有着丰富的历史文化。下面是一些著名的历史文化景点:</p>
<ul>
<li>明孝陵</li>
<li>中山陵</li>
<li>夫子庙</li>
<li>南京城墙</li>
</ul>
<img src="https://picsum.photos/800/400?random=1" alt="明孝陵">
<p>这些景点都有着悠久的历史和独特的文化,是了解南京历史文化的好去处。</p>
<h3>美食推荐</h3>
<p>南京有着许多美食,其中最著名的是鸭血粉丝汤和狮子头。</p>
<img src="https://picsum.photos/800/400?random=2" alt="鸭血粉丝汤">
<p>鸭血粉丝汤是南京的特色小吃,味道鲜美,非常受欢迎。</p>
<img src="https://picsum.photos/800/400?random=3" alt="狮子头">
<p>狮子头是一道传统的南京菜,是用猪肉做成的大肉丸,味道鲜美,口感极佳。</p>
<h3>旅游攻略</h3>
<p>如果您想来南京旅游,这里有一些旅游攻略供您参考:</p>
<ul>
<li>最佳旅游时间:春秋季节,气候宜人。</li>
<li>交通:南京有地铁和公交车,方便快捷。</li>
<li>住宿:南京有许多酒店和民宿可供选择,可以根据自己的需求和预算进行选择。</li>
<li>注意事项:在旅游景点要注意安全,不要随意翻越围栏或者游泳等危险行为。</li>
</ul>
</section>
<footer>
<p>© 2021 南京旅游</p>
</footer>
</body>
</html>
```
这个网页包含了导航栏、头部、主体内容和页脚。主体内容展示了南京的历史文化和旅游景点,同时也介绍了南京的美食和旅游攻略。您可以根据自己的需求进行修改和优化,比如添加更多的页面,加入更多的图片和视频等等。
阅读全文