写一个爱心HTML页面的代码
时间: 2023-06-16 18:02:11 浏览: 64
爱心网页-HTML-代码
5星 · 资源好评率100%
以下是一个简单的爱心HTML页面代码:
```
<!DOCTYPE html>
<html>
<head>
<title>爱心页面</title>
<style>
body {
margin: 0;
padding: 0;
background-color: #f9f5f5;
font-family: Arial, sans-serif;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
h1 {
font-size: 3rem;
color: #e63946;
margin-bottom: 2rem;
}
.heart {
position: relative;
width: 100px;
height: 90px;
}
.heart:before,
.heart:after {
position: absolute;
content: "";
left: 50px;
top: 0;
width: 50px;
height: 80px;
background-color: #e63946;
border-radius: 50px 50px 0 0;
transform: rotate(-45deg);
transform-origin: 0 100%;
}
.heart:after {
left: 0;
transform: rotate(45deg);
transform-origin: 100% 100%;
}
</style>
</head>
<body>
<div class="container">
<h1>爱你一万年</h1>
<div class="heart"></div>
</div>
</body>
</html>
```
这个页面包含一个标题和一个红色的爱心。可以根据需要进行样式和布局的调整。
阅读全文