用html做一个浪漫的炫酷的表白的页面
时间: 2024-05-15 20:18:22 浏览: 103
炫酷的登录页面 —— html
5星 · 资源好评率100%
好的,以下是一个简单的示例:
```html
<!DOCTYPE html>
<html>
<head>
<title>我的表白</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background-color: #F5ECEB;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
.title {
font-size: 4rem;
font-weight: bold;
text-align: center;
color: #DD3E4D;
text-shadow: 2px 2px #C5C5C5;
margin-bottom: 2rem;
}
.text {
font-size: 2rem;
text-align: center;
color: #333;
padding: 1rem;
max-width: 600px;
line-height: 1.5;
margin-bottom: 2rem;
border-radius: 10px;
background-color: #FFF9C3;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}
.button {
background-color: #DD3E4D;
color: #FFF;
font-size: 1.5rem;
padding: 1rem 2rem;
border-radius: 30px;
border: none;
cursor: pointer;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease;
}
.button:hover {
transform: scale(1.1);
}
</style>
</head>
<body>
<div class="container">
<h1 class="title">我想对你说</h1>
<p class="text">亲爱的,这是我特别为你准备的表白页面。在我认识你之前,我从未见过如此美丽和善良的人。和你在一起,我快乐、幸福、感恩。你是我的生命中最重要的人,我愿意一直陪伴在你的身边,一生一世。</p>
<button class="button">我爱你</button>
</div>
</body>
</html>
```
您可以根据自己的需求调整样式和内容。
阅读全文