帮我设计一个以介绍家乡的html网页模板,图片内容我来添加,模板样式为瀑布式,有四大类容(景点,历史,文化和人物)。
时间: 2023-11-26 17:04:07 浏览: 101
当然可以,下面是一个简单的瀑布式网页模板,您可以根据您的需要进行修改和添加内容。
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>我的家乡</title>
<style type="text/css">
* {
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
grid-gap: 20px;
}
.card {
background-color: #fff;
border-radius: 5px;
box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
overflow: hidden;
position: relative;
}
.card img {
display: block;
width: 100%;
height: 200px;
object-fit: cover;
}
.card .content {
padding: 20px;
}
.card h2 {
font-size: 24px;
font-weight: bold;
margin-bottom: 10px;
}
.card p {
font-size: 16px;
line-height: 1.5em;
margin-bottom: 20px;
}
.card a {
position: absolute;
bottom: 20px;
left: 20px;
color: #fff;
background-color: #333;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
transition: all 0.3s ease-in-out;
}
.card a:hover {
background-color: #222;
}
</style>
</head>
<body>
<div class="container">
<div class="card">
<img src="images/scenic1.jpg" alt="景点图片">
<div class="content">
<h2>景点标题</h2>
<p>景点简介</p>
<a href="#">了解更多</a>
</div>
</div>
<div class="card">
<img src="images/history1.jpg" alt="历史图片">
<div class="content">
<h2>历史标题</h2>
<p>历史简介</p>
<a href="#">了解更多</a>
</div>
</div>
<div class="card">
<img src="images/culture1.jpg" alt="文化图片">
<div class="content">
<h2>文化标题</h2>
<p>文化简介</p>
<a href="#">了解更多</a>
</div>
</div>
<div class="card">
<img src="images/people1.jpg" alt="人物图片">
<div class="content">
<h2>人物标题</h2>
<p>人物简介</p>
<a href="#">了解更多</a>
</div>
</div>
</div>
</body>
</html>
```
在这个模板中,我们使用了CSS网格布局来创建瀑布式的网页结构,每个内容块都是一个卡片,包括一个图片、标题、简介和链接。您可以根据您的需要修改卡片的样式和内容,添加更多的卡片以展示更多的家乡信息。同时,在每个卡片中,可以根据您的需要添加图片,只需将图片的地址替换为您自己的图片即可。
阅读全文