-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (43 loc) · 1.03 KB
/
index.html
File metadata and controls
49 lines (43 loc) · 1.03 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
<html>
<head>
<style>
footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: #f0f0f0;
/* 浅灰色背景 */
text-align: center;
padding: 10px 0;
font-size: 14px;
color: #333;
/* 深灰色文字 */
box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.1);
/* 添加轻微阴影 */
}
footer a {
text-decoration: none;
color: #333;
/* 链接颜色 */
}
footer a:hover {
color: #007bff;
/* 悬停时的颜色 */
}
</style>
</head>
<body>
Hello World @Micro
你好,世界
(Github Page - Micro.xin)
<footer>
<p>
<a href="http://www.beian.miit.gov.cn" target="_blank" rel="noopener noreferrer">
粤ICP备2024320984号-1号
</a>
</p>
<p>Copyright © 2025 Micro</p>
</footer>
</body>
</html>