eagleswim commited on
Commit
91d56dd
·
verified ·
1 Parent(s): b15cc08

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +58 -19
index.html CHANGED
@@ -1,19 +1,58 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Aijobweb APP Download</title>
7
+ <style>
8
+ body {
9
+ font-family: Arial, sans-serif;
10
+ background-color: #f4f4f4;
11
+ margin: 0;
12
+ padding: 0;
13
+ display: flex;
14
+ justify-content: center;
15
+ align-items: center;
16
+ height: 100vh;
17
+ }
18
+ .container {
19
+ background-color: #fff;
20
+ padding: 20px;
21
+ border-radius: 8px;
22
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
23
+ text-align: center;
24
+ }
25
+ h1 {
26
+ color: #333;
27
+ margin-bottom: 20px;
28
+ }
29
+ a {
30
+ display: inline-block;
31
+ margin: 10px 0;
32
+ padding: 10px 20px;
33
+ background-color: #007BFF;
34
+ color: #fff;
35
+ text-decoration: none;
36
+ border-radius: 5px;
37
+ transition: background-color 0.3s ease;
38
+ }
39
+ a:hover {
40
+ background-color: #0056b3;
41
+ }
42
+ .download-links {
43
+ display: flex;
44
+ flex-direction: column;
45
+ align-items: center;
46
+ }
47
+ </style>
48
+ </head>
49
+ <body>
50
+ <div class="container">
51
+ <h1>Download Aijobweb APP</h1>
52
+ <div class="download-links">
53
+ <a href="aijobweb.zip" download="aijobweb.zip">Download Aijobweb APP (English)</a>
54
+ <a href="aijobweb.zip" download="aijobweb.zip">下载安装 Aijobweb APP (中文)</a>
55
+ </div>
56
+ </div>
57
+ </body>
58
+ </html>