38 lines
1000 B
HTML
38 lines
1000 B
HTML
<!DOCTYPE html>
|
||
<html lang="zh-CN">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<title>归墟 - 【梦星献作】</title>
|
||
<style>
|
||
@import url('https://fonts.googleapis.com/css2?family=ZCOOL+KuaiLe&family=Ma+Shan+Zheng&display=swap');
|
||
|
||
body, html {
|
||
margin: 0;
|
||
padding: 0;
|
||
width: 100%;
|
||
}
|
||
|
||
#startup-page {
|
||
min-height: 100vh;
|
||
width: 100%;
|
||
height: auto;
|
||
color: white;
|
||
font-family: 'ZCOOL+KuaiLe', 'Ma+Shan+Zheng', serif;
|
||
background-size: cover;
|
||
background-position: center;
|
||
transition: background-image 1s ease-in-out;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
position: relative;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div id="startup-page">
|
||
<h1>归墟 - 【梦星献作】</h1>
|
||
<p>这是一个测试页面,显示HTML正在正常渲染。</p>
|
||
</div>
|
||
</body>
|
||
</html> |