-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (76 loc) · 1.89 KB
/
index.html
File metadata and controls
78 lines (76 loc) · 1.89 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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8"/>
<title> AD 的個人博客 </title>
<link rel="stylesheet" href="./css/style.css">
<style>
body {
padding: 20px;
max-width: 1200px;
margin: 0 auto;
word-wrap: break-word;
}
h1, h2, h3, p, address {
margin: 15px 0;
}
a {
margin: 5px 0;
display: inline-block;
}
@media (max-width: 768px) {
body {
padding: 15px;
}
h1 {
font-size: 1.8rem;
}
h2 {
font-size: 1.4rem;
}
h3 {
font-size: 1.2rem;
}
}
@media (max-width: 480px) {
body {
padding: 10px;
}
h1 {
font-size: 1.5rem;
}
h2 {
font-size: 1.2rem;
}
}
</style>
<script>
addEventListener("load", function () {
setTimeout(hideURLbar, 0);
}, false);
function hideURLbar() {
window.scrollTo(0, 1);
}
</script>
</head>
<body>
<div class="main-bg"></div>
<h1> AD 的個人博客 </h1>
<h3> 歡迎訪問 AD 的個人博客 </h3>
<p> —— —— —— —— —— </p>
<h2> AD 的 FTP 服務器 </h2>
<a href="./AD/ftp.html">訪問 AD 的 FTP 服務器 </a>
<br>
<h2> apt Repo of AD </h2>
<a href="./other/ad_repo/waiting.html">AD的apt源</a>
<br>
<!--
<br>
<p> —— —— —— —— —— </p>
<h2> 友情鏈接 </h2>
<a href="./Other/chenchen/Waiting.html">晨晨雜貨鋪</a>
-->
<br>
<address> © 2025 AD All rights reserved</address>
</body>
</html>