用html制作一个茶楼介绍网页主页 加css 有创意
时间: 2023-09-27 20:04:47 浏览: 105
以下是一个带有创意的茶楼介绍网页主页的HTML和CSS代码示例:
HTML代码:
```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">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" integrity="sha384-qnKgLPmYQ0KRq5tO4YR4V9dXvIofq8w/2IQkkl5UpyQxR5fQJFkSBwA4G+8U6Zl5" crossorigin="anonymous">
</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>
</ul>
</nav>
</header>
<section class="intro">
<h2>欢迎来到茶楼名称</h2>
<p>我们提供优质的茶品和美食,让您享受品质生活的同时,也感受到中华茶文化的魅力。</p>
<a href="#" class="button">了解更多</a>
</section>
<section class="image-grid">
<div class="image" style="background-image: url('teahouse1.jpg');"></div>
<div class="image" style="background-image: url('teahouse2.jpg');"></div>
<div class="image" style="background-image: url('teahouse3.jpg');"></div>
<div class="image" style="background-image: url('teahouse4.jpg');"></div>
</section>
<section class="quote">
<blockquote>“茶,是一种文化,更是一种情怀。”</blockquote>
</section>
<section class="features">
<h2>茶楼特色</h2>
<ul>
<li><i class="fas fa-music"></i> 现场音乐演出</li>
<li><i class="fas fa-book"></i> 书吧阅读空间</li>
<li><i class="fas fa-gamepad"></i> 棋牌室游戏娱乐</li>
<li><i class="fas fa-child"></i> 儿童乐园玩耍</li>
</ul>
</section>
<footer>
<p>版权所有 © 茶楼名称</p>
</footer>
</body>
</html>
```
CSS代码:
```css
/* 全局样式 */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
color: #333;
background-color: #f7f7f7;
}
a {
color: inherit;
text-decoration: none;
}
ul {
list-style: none;
}
/* 头部样式 */
header {
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
z-index: 1;
}
h1 {
font-size: 36px;
font-weight: bold;
text-align: center;
padding: 20px;
}
nav ul {
display: flex;
justify-content: center;
}
nav li {
margin: 0 10px;
}
nav a {
padding: 10px;
transition: all 0.3s ease;
}
nav a:hover {
background-color: #f7f7f7;
border-radius: 10px;
}
/* 介绍样式 */
.intro {
background-color: #f7f7f7;
padding: 50px 0;
text-align: center;
}
.intro h2 {
font-size: 28px;
font-weight: bold;
margin-bottom: 20px;
}
.intro p {
font-size: 18px;
margin-bottom: 30px;
}
.button {
display: inline-block;
background-color: #333;
color: #fff;
padding: 12px 30px;
border-radius: 30px;
font-size: 18px;
transition: all 0.3s ease;
}
.button:hover {
background-color: #fff;
color: #333;
border: 2px solid #333;
}
/* 图片网格样式 */
.image-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
grid-gap: 20px;
padding: 50px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin: 50px 0;
}
.image {
height: 250px;
background-size: cover;
background-position: center;
}
/* 引用样式 */
.quote {
background-color: #333;
color: #fff;
padding: 50px;
margin: 50px 0;
}
blockquote {
font-size: 24px;
font-style: italic;
margin-bottom: 20px;
}
/* 特色样式 */
.features {
background-color: #fff;
padding: 50px;
margin-bottom: 50px;
}
.features h2 {
font-size: 28px;
font-weight: bold;
margin-bottom: 20px;
}
.features ul {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.features li {
display: flex;
align-items: center;
margin: 10px;
}
.features i {
font-size: 36px;
margin-right: 10px;
color: #333;
}
/* 页脚样式 */
footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
```
该网页主页使用了以下创意设计:
1. 头部使用了固定定位和阴影效果,使其在页面滚动时保持在顶部且有层次感。
2. 介绍部分使用了背景色和居中对齐的样式,并加入了带有自定义样式的按钮链接。
3. 图片网格部分使用了自适应的网格布局和背景图片,并在CSS中设置了图片高度和背景位置等样式。
4. 引用部分使用了黑色背景和白色文字,以及带有斜体样式的引用文本。
5. 特色部分使用了带有图标的列表,并使用了Flexbox布局和圆角样式。
需要注意的是,以上HTML和CSS代码只是一个示例,实际制作中需要根据茶楼的特点和需要进行调整和扩展。同时,还需要对页面进行响应式设计,以适应不同设备的屏幕尺寸和分辨率。
阅读全文