-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
130 lines (113 loc) · 2.8 KB
/
Copy pathindex.html
File metadata and controls
130 lines (113 loc) · 2.8 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>vm12的网站</title>
<style>
body {
background: url('https://bing.img.run/1366x768.php');
background-size: cover ;
background-repeat: no-repeat;
background-attachment: fixed;
}
header {
background-color: rgba(155, 110, 110, 0.4);
backdrop-filter: blur(5px);
border-radius: 7px;
box-shadow: 0 5px 15px rgba(20 ,20 ,20, 0.8);
border: 1px rgb(114, 114, 114) solid;
width: 100%;
height: 80px;
display: flex;
justify-content: center;
align-items: center;
}
.limtom {
height: 50px;
}
h1 {
font-size: 30px;
margin-left: 20px;
}
footer ul {
line-height: 15px;
padding: 0px;
display: flex;
justify-content: center;
gap: 20px;
}
footer a {
color: white;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
main {
background-color: rgba(155, 110, 110, 0.4);
backdrop-filter: blur(5px);
border-radius: 7px;
box-shadow: 0 5px 15px rgba(20 ,20 ,20, 0.8);
border: 1px rgb(114, 114, 114) solid;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 10px;
text-align: center;
font-size: large;
width: 400px;
}
main p {
color: white;
line-height: 20px;
}
main a {
color: rgb(200, 200, 200);
text-decoration: none;
}
main a:hover {
color: white;
text-decoration: underline;
}
footer {
background-color: rgba(155, 110, 110, 0.4);
backdrop-filter: blur(5px);
box-shadow: 0 5px 15px rgba(20 ,20 ,20, 0.8);
border: 1px rgb(114, 114, 114) solid;
width: 100vw;
height: 70px;
position: absolute;
bottom: 0px;
right: 0px;
}
footer p{
color: rgb(255, 224, 224);
text-align: center;
font-weight: lighter;
position: relative;
bottom: 10px;
}
</style>
</head>
<body>
<header>
<img src="pictures/limtom.jpg" class="limtom">
<h1 style="color: white;">VMware12的网站</h1>
</header>
<main>
<p style="font-size: larger;">逸一时,误一世,逸久逸久罢已龄</p>
<p>Welcome to my website!</p>
<p>这里啥都木有(但是下面有)</p>
<a href="/ziyuan/ziyuan.html">VM12的资源站</a>
</main>
<footer>
<ul>
<a href="/links.html">友情链接</a>
<a href="update.html">更新日志</a>
</ul>
<p>© 2026 limtom-pc All Rights Reserved</p>
</footer>
</body>
</html>