JS+CSS+HTML写一个表白
时间: 2023-06-28 13:12:25 浏览: 95
好的,我可以帮您实现这个表白。以下是代码:
HTML部分:
```
<!DOCTYPE html>
<html>
<head>
<title>表白</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container">
<h1>亲爱的XXX:</h1>
<p>我想对你说:</p>
<p class="love">我爱你!</p>
<p>从我们相遇的那一刻开始,我就被你吸引了。</p>
<p>你的美丽,你的聪明,你的善良,让我深深地爱上了你。</p>
<p>我希望我们能一直在一起,共同经历人生的点点滴滴。</p>
<p>XXX,你愿意做我的女朋友吗?</p>
<p>爱你的:</p>
<p class="signature">XXX</p>
</div>
</body>
</html>
```
CSS部分:
```
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
}
.container {
width: 80%;
margin: 0 auto;
background-color: #fff;
padding: 30px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
h1 {
text-align: center;
color: #ff69b4;
font-size: 36px;
margin-bottom: 20px;
}
p {
font-size: 18px;
margin-bottom: 10px;
line-height: 1.5;
}
.love {
font-size: 24px;
color: #ff69b4;
text-align: center;
margin-bottom: 20px;
}
.signature {
text-align: right;
font-style: italic;
font-size: 20px;
margin-top: 30px;
}
```
您可以将代码保存为HTML和CSS文件,然后在浏览器中打开HTML文件,就可以看到一个简单的表白页面了。
阅读全文