写一个炫酷的HTML代码
时间: 2023-12-01 09:27:37 浏览: 73
超炫酷代码,HTML格式
<!DOCTYPE html>
<html>
<head>
<title>炫酷的HTML代码</title>
<style>
body {
background-color: black;
color: white;
font-size: 24px;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
h1 {
font-family: 'Impact', sans-serif;
font-size: 80px;
text-shadow: 0px 0px 20px #ff00ff;
}
p {
font-family: 'Courier New', monospace;
font-size: 36px;
text-align: center;
margin-top: 50px;
}
</style>
</head>
<body>
<h1>炫酷的HTML代码</h1>
<p>Hello World! 这是一个用HTML和CSS写的炫酷的网页。</p>
</body>
</html>
阅读全文