写一个表白网页html
时间: 2023-10-03 10:06:15 浏览: 83
<!DOCTYPE html>
<html>
<head>
<title>我对你的表白</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f7f7f7;
}
h1 {
text-align: center;
color: #ff69b4;
margin-top: 50px;
font-size: 60px;
}
p {
text-align: center;
color: #333;
font-size: 24px;
margin-top: 50px;
}
button {
background-color: #ff69b4;
color: #fff;
font-size: 20px;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
margin-top: 50px;
}
button:hover {
background-color: #ff8ac4;
}
</style>
</head>
<body>
<h1>我喜欢你</h1>
<p>你的美丽、聪明、善良、勇敢,都让我深深地爱上了你。</p>
<p>我想和你一起经历人生的点滴,一起走过风雨,一起分享快乐。</p>
<p>我知道这不是一时冲动,而是我内心深处真正的想法。</p>
<button>愿意做我的女朋友吗?</button>
</body>
</html>
阅读全文