html页面小宠物代码大全,宠物店网页设计html代码
时间: 2023-11-29 07:57:24 浏览: 39
以下是一个简单的HTML页面小宠物代码示例,您可以根据自己的需求进行修改和扩展:
```html
<!DOCTYPE html>
<html>
<head>
<title>宠物店</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
h1 {
text-align: center;
color: #333;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
margin: 20px;
}
.pet {
background-color: #fff;
box-shadow: 0 0 10px rgba(0,0,0,0.2);
padding: 10px;
margin: 10px;
width: 200px;
height: 250px;
text-align: center;
position: relative;
}
.pet img {
max-width: 80%;
max-height: 80%;
margin: 10px;
}
.pet h2 {
font-size: 1.2em;
color: #333;
margin: 10px;
}
.pet p {
font-size: 0.8em;
color: #666;
margin: 10px;
line-height: 1.5em;
}
.pet button {
background-color: #333;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 20px;
position: absolute;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
cursor: pointer;
}
.pet button:hover {
background-color: #666;
}
</style>
</head>
<body>
<h1>欢迎来到宠物店</h1>
<div class="container">
<div class="pet">
<img src="https://via.placeholder.com/150" alt="狗">
<h2>小狗</h2>
<p>这是一只可爱的小狗,非常聪明和活泼。</p>
<button>购买</button>
</div>
<div class="pet">
<img src="https://via.placeholder.com/150" alt="猫">
<h2>小猫</h2>
<p>这是一只软萌可爱的小猫,非常温顺和好动。</p>
<button>购买</button>
</div>
<div class="pet">
<img src="https://via.placeholder.com/150" alt="兔子">
<h2>小兔子</h2>
<p>这是一只可爱的小兔子,非常喜欢吃胡萝卜。</p>
<button>购买</button>
</div>
<div class="pet">
<img src="https://via.placeholder.com/150" alt="鱼">
<h2>小鱼</h2>
<p>这是一条漂亮的小鱼,非常喜欢游泳和跳跃。</p>
<button>购买</button>
</div>
</div>
</body>
</html>
```
这个示例包含了一个简单的宠物店页面设计,包括一个顶部的标题、一个包含多个宠物展示的容器,以及每个宠物的图片、名称、描述和购买按钮。您可以根据自己的需求修改样式和内容,添加更多的宠物种类和商品信息。
阅读全文