-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (30 loc) · 1.12 KB
/
index.html
File metadata and controls
32 lines (30 loc) · 1.12 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>我的下载站</title>
<style>
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; text-align: center; padding: 50px; }
.download-link {
display: inline-block;
margin: 10px;
padding: 15px 30px;
background-color: #007bff;
color: white;
text-decoration: none;
border-radius: 5px;
font-size: 18px;
}
.download-link:hover { background-color: #0056b3; }
</style>
</head>
<body>
<h1>欢迎来到我的下载站</h1>
<!-- 注意:这里的链接是占位符,稍后会替换成你自己的代理链接 -->
<p>请点击下面的链接进行下载:</p>
<a href="https://你的自定义域名/download/https://raw.githubusercontent.com/你的用户名/你的用户名.github.io/main/resources/你的文件.zip" class="download-link">
下载 [你的文件名称]
</a>
</body>
</html>