酒店管理网站模板_酒店管理网站设计

哆啦Ai流程自动化发布于:2023-05-04 12:40热度:445 ℃
点赞75收藏

以下是一个简单的酒店管理网站模板,可以根据需要进行自定义:
HTML代码:
```html




酒店管理网站




酒店管理网站






酒店信息





酒店预订





联系我们






版权所有 © 2023 酒店管理网站





```
CSS代码:
```css
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
}
nav ul {
list-style: none;
margin: 0;
}
nav li {
margin-right: 20px;
}
main {
margin-top: 50px;
}
section {
margin-bottom: 20px;
}
h2 {
font-size: 2em;
margin-bottom: 10px;
}
ul {
list-style: none;
}
li {
margin-bottom: 10px;
}
a {
color: #333;
text-decoration: none;
transition: color 0.2s ease;
}
a:hover {
color: #fff;
}
```
这个模板包含了一个标题、导航栏、三个主要区域(酒店信息、酒店预订、联系我们)和一些样式元素。你可以根据需要进行修改和自定义。