帮我设计个旅游网页,写出代码
时间: 2024-03-31 15:35:07 浏览: 177
好的,以下是一个简单的旅游网页的代码示例,您可以参考一下:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>旅游网页</title>
<style>
/* 一些基本的样式 */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
}
nav {
background-color: #ccc;
padding: 10px;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
justify-content: space-between;
}
nav ul li {
margin-right: 20px;
}
.hero {
background-image: url('https://picsum.photos/id/1015/1000/600');
height: 600px;
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
h1 {
font-size: 4rem;
margin: 0;
color: #fff;
}
.destinations {
display: flex;
justify-content: space-between;
padding: 20px;
}
.destination {
flex-basis: 30%;
background-color: #f2f2f2;
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
overflow: hidden;
}
.destination img {
width: 100%;
height: 200px;
object-fit: cover;
}
.destination h2 {
font-size: 1.5rem;
margin: 10px;
}
.destination p {
margin: 10px;
font-size: 1.2rem;
color: #666;
}
footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
</style>
</head>
<body>
<header>
<h1>旅游网页</h1>
</header>
<nav>
<ul>
<li><a href="#">旅游目的地</a></li>
<li><a href="#">景点介绍</a></li>
<li><a href="#">旅游计划</a></li>
<li><a href="#">关于我们</a></li>
</ul>
</nav>
<div class="hero">
<h1>发现最美的旅游目的地</h1>
</div>
<div class="destinations">
<div class="destination">
<img src="https://picsum.photos/id/1020/400/300" alt="">
<h2>巴黎</h2>
<p>巴黎是世界上最美的城市之一,拥有艺术、文化和美食的丰富历史。</p>
</div>
<div class="destination">
<img src="https://picsum.photos/id/1021/400/300" alt="">
<h2>东京</h2>
<p>东京是亚洲最富有活力和创意的城市之一,拥有世界级的美食、购物和文化。</p>
</div>
<div class="destination">
<img src="https://picsum.photos/id/1022/400/300" alt="">
<h2>纽约</h2>
<p>纽约是全球最繁忙和多元化的城市之一,拥有无数的文化、娱乐和购物活动。</p>
</div>
</div>
<footer>
<p>版权所有 © 2021 旅游网页</p>
</footer>
</body>
</html>
```
代码中包括了一个简单的头部、导航栏、主题图片、旅游目的地和页脚等模块。您可以根据自己的需求进行修改和完善。
阅读全文