帮我用html写一个表白页面
时间: 2023-07-01 18:07:33 浏览: 92
好的,以下是一个简单的表白页面示例:
```html
<!DOCTYPE html>
<html>
<head>
<title>表白页面</title>
<meta charset="UTF-8">
<style>
body {
background-color: #f8b195;
font-family: Arial, sans-serif;
text-align: center;
}
h1 {
color: #fff;
font-size: 36px;
margin-top: 50px;
}
p {
color: #fff;
font-size: 24px;
margin-top: 30px;
line-height: 1.5;
}
button {
background-color: #fff;
border: none;
color: #f8b195;
font-size: 24px;
padding: 10px 20px;
margin-top: 30px;
border-radius: 5px;
cursor: pointer;
box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
}
button:hover {
background-color: #f1c40f;
color: #fff;
}
</style>
</head>
<body>
<h1>我喜欢你</h1>
<p>亲爱的,我想对你说:<br>我喜欢你,喜欢的无法自拔。</p>
<button>回复我吧</button>
</body>
</html>
```
你可以将这个代码复制到一个 HTML 文件中,然后在浏览器中打开它,就可以看到一个简单的表白页面了。你可以根据自己的需要进行修改和美化。
阅读全文