html酒店网页制作代码
时间: 2023-08-14 08:49:37 浏览: 112
以下是一个简单的 HTML 酒店网页制作代码示例:
```
<!DOCTYPE html>
<html>
<head>
<title>酒店名称 - 官方网站</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>酒店名称</h1>
<nav>
<ul>
<li><a href="#">首页</a></li>
<li><a href="#">客房预订</a></li>
<li><a href="#">餐饮服务</a></li>
<li><a href="#">会议活动</a></li>
<li><a href="#">联系我们</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>欢迎光临酒店名称</h2>
<p>酒店名称提供高品质的客房、美食和服务,为您的旅程带来舒适和愉悦。我们致力于为您提供最好的住宿体验。</p>
<button>了解更多</button>
</section>
<section>
<h2>客房预订</h2>
<p>我们提供豪华客房、套房和标准房间,满足不同需求的客人。所有客房设施齐全,配备了现代化的设备和家具。</p>
<button>预订客房</button>
</section>
<section>
<h2>餐饮服务</h2>
<p>我们的餐厅提供各种美食,包括当地和国际菜肴,满足您的口味。我们的主厨和服务团队将确保您享受美妙的用餐体验。</p>
<button>查看菜单</button>
</section>
<section>
<h2>会议活动</h2>
<p>我们的会议室设备齐全,可容纳各种规模的会议和活动。我们的专业团队将为您提供全方位的会务服务,确保会议顺利进行。</p>
<button>申请预订</button>
</section>
</main>
<footer>
<p>版权所有 © 酒店名称</p>
</footer>
</body>
</html>
```
此外,还需要编写一个名为 `style.css` 的 CSS 文件来设置网页的样式。例如:
```
body {
font-family: Arial, sans-serif;
color: #333;
background-color: #f8f8f8;
margin: 0;
padding: 0;
}
header {
background-color: #fff;
padding: 20px;
box-shadow: 0 0 10px rgba(0,0,0,.1);
}
h1 {
margin: 0;
font-size: 32px;
}
nav {
margin-top: 20px;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
nav li {
margin-right: 20px;
}
nav a {
color: #333;
text-decoration: none;
padding: 10px;
border-bottom: 2px solid transparent;
transition: border-bottom-color .2s ease-in-out;
}
nav a:hover {
border-bottom-color: #333;
}
main {
padding: 20px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
section {
flex-basis: calc(33.33% - 20px);
background-color: #fff;
padding: 20px;
margin-bottom: 20px;
box-shadow: 0 0 10px rgba(0,0,0,.1);
}
section h2 {
margin-top: 0;
}
button {
background-color: #333;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 3px;
font-size: 14px;
cursor: pointer;
transition: background-color .2s ease-in-out;
}
button:hover {
background-color: #000;
}
footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
```
阅读全文