-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.html
46 lines (43 loc) · 1.1 KB
/
test.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>首页</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="rstyro-胖不了小陆">
<link rel="icon" type="image/x-ico" href="./logo.ico" />
<style>
body{
}
#main{
width: 1100px;
margin: 50px auto;
text-align: center;
background: #eeeeee;
padding: 10px 0px;
}
.content{
height: 300px;
width: 100%;
}
h1 {
font-size: 30px;
background: linear-gradient(to right, red, blue);
-webkit-background-clip: text;
color: transparent;
}
</style>
</head>
<body>
<div id="main">
<h1>网站建设中修改</h1>
<div class="content">
<p>敬请期待...</p>
</div>
<footer class="copyright">
<span>Copyright © 2022 胖不了小陆. All rights reserved </span>
<a href="http://beian.miit.gov.cn">桂ICP备2020010222号-1</a>
</footer>
</div>
</body>
</html>