html写个元旦快乐代码 有星空特效
时间: 2023-02-07 17:33:13 浏览: 221
Happy Christmas html代码
以下是一个 HTML 代码,显示 "元旦快乐" 字样,并具有星空特效的例子:
```html
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: black;
}
h1 {
color: white;
text-align: center;
font-size: 72px;
text-shadow: 0 0 20px white, 0 0 30px white, 0 0 40px white, 0 0 50px white, 0 0 60px white, 0 0 70px white;
}
</style>
</head>
<body>
<h1>元旦快乐</h1>
</body>
</html>
```
在这个代码中,我们使用了 `text-shadow` 属性来为文本添加阴影,从而创建星空特效。
希望这个例子对你有帮助。
阅读全文