newbietk commited on
Commit
cbb89a0
1 Parent(s): 62952fa

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +28 -17
index.html CHANGED
@@ -1,19 +1,30 @@
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
+ <title>HTML5 3D地球仪DEMO演示</title>
6
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js" type="text/javascript"></script>
7
+
8
+ <link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Oswald:400'><link rel="stylesheet" href="./style.css">
9
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
10
+
11
+ </head>
12
+ <body>
13
+ <!-- partial:index.partial.html -->
14
+ <div class="world">
15
+ <div class="world-bg"></div>
16
+ <div class="world-globe">
17
+ <div class="world-globe-pole"></div>
18
+ <div class="world-globe-doms-container"></div>
19
+ <div class="world-globe-halo"></div>
20
+ </div>
21
+ </div>
22
+
23
+ <!-- partial -->
24
+ <script src='dat.gui.min.js'></script>
25
+ <script src='Stats.js'></script>
26
+ <script src='css_globe_PerspectiveTransform.js'></script>
27
+ <script src='TweenMax.min.js'></script><script src="script.js"></script>
28
+
29
+ </body>
30
  </html>