写一个有创意的欢迎页面html
时间: 2023-12-18 13:03:51 浏览: 108
<!DOCTYPE html>
<html>
<head>
<title>欢迎来到我的世界</title>
<meta charset="UTF-8">
<style>
body {
background-color: #2c3e50;
color: #ecf0f1;
font-family: Arial, sans-serif;
}
h1 {
font-size: 5em;
text-align: center;
margin-top: 20%;
text-shadow: 2px 2px #000000;
}
p {
font-size: 2em;
text-align: center;
margin-top: 5%;
}
a {
color: #ecf0f1;
text-decoration: none;
font-size: 2em;
display: block;
margin-top: 5%;
text-align: center;
}
a:hover {
color: #1abc9c;
}
</style>
</head>
<body>
<h1>欢迎来到我的世界</h1>
<p>这里是一个充满创意和想象力的地方</p>
<a href="#">开始探索</a>
</body>
</html>
在这个欢迎页面中,我使用了大字体、居中对齐和阴影,来制造一个神秘感和诱人的感觉。页面背景色为深色,文字颜色为浅色,以增加对比度。同时,我使用了一个超链接,使用户可以探索我的世界。这个欢迎页面的设计目的是要吸引用户的注意力并鼓励他们进一步发掘我的网站。
阅读全文