一个宠物之家的网页设计代码
时间: 2024-02-27 13:59:00 浏览: 59
以下是一个简单的宠物之家的网页设计代码,包括 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">
</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>
<main>
<section>
<h2>我们的宠物</h2>
<div class="pet-list">
<div class="pet-item">
<img src="https://via.placeholder.com/150x150" alt="宠物1">
<h3>宠物1</h3>
<p>这是一只非常可爱的宠物。</p>
<a href="#">查看详情</a>
</div>
<div class="pet-item">
<img src="https://via.placeholder.com/150x150" alt="宠物2">
<h3>宠物2</h3>
<p>这是一只非常可爱的宠物。</p>
<a href="#">查看详情</a>
</div>
<div class="pet-item">
<img src="https://via.placeholder.com/150x150" alt="宠物3">
<h3>宠物3</h3>
<p>这是一只非常可爱的宠物。</p>
<a href="#">查看详情</a>
</div>
</div>
</section>
</main>
<footer>
<p>版权所有 © 2021 宠物之家</p>
</footer>
</body>
</html>
```
CSS 代码(style.css):
```css
/* 全局样式 */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Helvetica Neue", Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
color: #333;
}
/* 头部样式 */
header {
background-color: #f5f5f5;
padding: 20px;
}
h1 {
font-size: 36px;
font-weight: 700;
margin-bottom: 10px;
}
nav ul {
list-style: none;
display: flex;
}
nav li {
margin-right: 20px;
}
nav a {
color: #333;
text-decoration: none;
font-size: 18px;
}
nav a:hover {
color: #666;
}
/* 主体样式 */
main {
padding: 20px;
}
section {
margin-bottom: 40px;
}
h2 {
font-size: 24px;
font-weight: 700;
margin-bottom: 10px;
}
.pet-list {
display: flex;
flex-wrap: wrap;
}
.pet-item {
margin-right: 20px;
margin-bottom: 20px;
width: 300px;
}
.pet-item h3 {
font-size: 20px;
font-weight: 700;
margin-bottom: 10px;
}
.pet-item p {
margin-bottom: 20px;
}
.pet-item a {
display: inline-block;
background-color: #f5f5f5;
padding: 10px 20px;
color: #333;
text-decoration: none;
border-radius: 5px;
}
.pet-item a:hover {
background-color: #e0e0e0;
}
/* 底部样式 */
footer {
background-color: #f5f5f5;
padding: 20px;
text-align: center;
}
```
这是一个简单的宠物之家的网页设计,您可以根据需要进行修改和扩展。
阅读全文