帮我生成一份炫酷的表白网页代码
时间: 2023-11-20 13:06:26 浏览: 89
使用html+css+javascript实现一个漂亮、炫酷的表白页面,给出源码
好的,下面是一个简单的例子,你可以根据需要进行修改。
```html
<!DOCTYPE html>
<html>
<head>
<title>表白</title>
<style>
body {
background-color: #000;
color: #fff;
font-family: Arial, sans-serif;
text-align: center;
}
h1 {
font-size: 60px;
margin-top: 100px;
}
p {
font-size: 30px;
margin-top: 50px;
}
button {
font-size: 30px;
padding: 20px 40px;
margin-top: 50px;
background-color: #ff69b4;
border: none;
color: #fff;
cursor: pointer;
border-radius: 5px;
transition: background-color 0.5s ease;
}
button:hover {
background-color: #ff1493;
}
</style>
</head>
<body>
<h1>我喜欢你</h1>
<p>你是我见过最美的女孩,我愿意陪你走过每一天。</p>
<button>接受我的表白</button>
<script>
button.onclick = function() {
alert("谢谢你接受我的表白!");
}
</script>
</body>
</html>
```
你可以将其中的文字和样式进行修改,让它更符合你的需求。
阅读全文