用html写一个炫酷的表白代码
时间: 2023-04-02 16:03:02 浏览: 136
用html写爱心2种方法源代码
好的,以下是一个简单的炫酷表白代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>炫酷表白代码</title>
<style>
body {
background-color: #000;
color: #fff;
font-size: 30px;
text-align: center;
padding-top: 100px;
}
h1 {
font-size: 80px;
color: #ff69b4;
text-shadow: 10px #ff69b4;
}
p {
font-size: 50px;
color: #fff;
text-shadow: 10px #ff69b4;
}
</style>
</head>
<body>
<h1>我喜欢你</h1>
<p>你愿意做我的女朋友吗?</p>
</body>
</html>
```
希望这个代码能帮助你表达爱意!
阅读全文