web前端写一个简单酒店网页设计代码
时间: 2024-04-30 17:20:49 浏览: 99
好的,以下是一个简单的酒店网页设计代码示例:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>酒店网页设计</title>
<style>
/* 设置背景图片 */
body {
background-image: url("hotel-bg.jpg");
background-repeat: no-repeat;
background-size: cover;
}
/* 设置网页标题样式 */
h1 {
text-align: center;
color: #fff;
margin-top: 50px;
font-size: 60px;
text-shadow: 2px 2px #000;
}
/* 设置酒店介绍样式 */
.intro {
background-color: rgba(255, 255, 255, 0.6);
margin: 100px auto;
padding: 50px;
width: 80%;
border-radius: 20px;
box-shadow: 5px 5px 10px #000;
}
/* 设置酒店图片样式 */
.images {
display: flex;
justify-content: center;
margin-bottom: 50px;
}
.images img {
margin: 0 20px;
border-radius: 10px;
box-shadow: 3px 3px 5px #000;
}
/* 设置预订按钮样式 */
.button {
display: block;
margin: 0 auto;
width: 200px;
height: 50px;
background-color: #fff;
border-radius: 30px;
text-align: center;
line-height: 50px;
font-size: 24px;
color: #000;
text-decoration: none;
box-shadow: 3px 3px 5px #000;
}
.button:hover {
background-color: #f00;
color: #fff;
}
</style>
</head>
<body>
<h1>欢迎来到我们的酒店</h1>
<div class="intro">
<h2>酒店介绍</h2>
<p>
我们的酒店位于市中心,交通便利,周边有多个景点和购物中心。我们提供豪华客房、会议室、餐厅等设施,并提供优质的服务,让您的旅途更加舒适愉快。
</p>
<div class="images">
<img src="hotel-room.jpg" alt="豪华客房" />
<img src="hotel-restaurant.jpg" alt="餐厅" />
<img src="hotel-meeting.jpg" alt="会议室" />
</div>
<a class="button" href="#">立即预订</a>
</div>
</body>
</html>
```
你可以将以上代码保存为 `hotel.html`,并将 `hotel-bg.jpg`、`hotel-room.jpg`、`hotel-restaurant.jpg`、`hotel-meeting.jpg` 这 4 张图片与 `hotel.html` 文件放在同一个文件夹中,然后在浏览器中打开 `hotel.html` 文件,即可看到效果。
阅读全文