-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdate.html
More file actions
114 lines (103 loc) · 2.5 KB
/
Copy pathupdate.html
File metadata and controls
114 lines (103 loc) · 2.5 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>更新日志</title>
</head>
<style>
header {
background-color: rgba(0, 0, 0, 0.719);
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: black;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
main p {
margin: 1px;
text-align: center;
}
div {
margin: 10px 10vw;
}
footer {
width: 100vw;
height: 70px;
position: absolute;
bottom: 0px;
right: 0px;
}
footer p{
text-align: center;
font-weight: lighter;
position: relative;
bottom: 10px;
}
</style>
<body>
<header>
<img src="pictures/limtom.jpg" class="limtom">
<h1 style="color: white;">VMware12的网站</h1>
</header>
<h2 style="text-align: center;margin-top: 25px;">更新日志</h2>
<main>
<div>
<p>2024.8.18</p>
<p>开启项目,网站版本为0.1</p>
</div>
<div>
<p>2024.8.29</p>
<p>第二次更新,网站版本为1.0</p>
</div>
<div>
<p>2025.8.30</p>
<p>第三次更新,界面得到了大幅改动,版本为2.0</p>
</div>
<div>
<p>2025.11.23</p>
<p>友情链接内更换部分链接,网站内一部分图片上传至图床(已作废),新增更新日志</p>
</div>
<div>
<p>2026.2.12</p>
<p>修复部分图片不能展示问题</p>
</div>
<div>
<p>2026.2.14</p>
<p>界面得到更改,适配手机端,新增一些链接</p>
</div>
</main>
<footer>
<ul>
<a href="index.html">主页</a>
<a href="links.html">友情链接</a>
</ul>
<p>© 2026 limtom-pc All Rights Reserved</p>
</footer>
</body>
</html>