HTML做一个简单漂亮的宠物网页(纯html代码)
以下是一个简单而漂亮的HTML页面示例,用于展示宠物信息:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>我的宠物</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f3f3f3;
}
.pet-container {
width: 500px;
padding: 20px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
text-align: center;
}
img {
width: 200px;
height: 200px;
object-fit: cover;
margin-bottom: 20px;
}
h1 {
margin-top: 0;
}
.pet-info {
margin-top: 20px;
color: #333;
}
</style>
</head>
<body>
<div class="pet-container">
<img src="https://placekitten.com/200/200" alt="猫咪照片">
<h1>猫咪名字</h1>
<div class="pet-info">
<p>品种:波斯猫</p>
<p>年龄:2岁</p>
<p>特点:温柔活泼</p>
</div>
</div>
</body>
</html>
这个页面使用了简单的HTML结构,内联CSS来增强页面的样式,并包含了一张猫咪的图片和一些关于它的基本信息。你可以根据需要替换图片和信息来展示你自己的宠物。
评论已关闭