下面是一个简单的HTML网页代码,用于展示一个ASCII艺术风格的圣诞树,以及一些基本的样式。你可以将以下代码复制并粘贴到一个HTML文件中,然后用浏览器打开即可查看效果。
```html
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>圣诞树</title>
<style>
body {
background-color: #2c3e50;
color: white;
font-family: Arial, sans-serif;
text-align: center;
padding: 50px;
}
.tree {
white-space: pre;
font-family: monospace;
font-size: 20px;
}
.star {
color: yellow;
font-size: 30px;
}
</style>
</head>
<body>
<h1>圣诞快乐!</h1>
<div class="star">★</div>
<div class="tree">
<pre>
*
***
*****
*******
*********
***********
*************
***************
*****************
|||
|||
</pre>
</div>
<p>祝您在这个节日季节快乐和温暖!</p>
</body>
</html>