zsytony commited on
Commit
eaa97dc
·
verified ·
1 Parent(s): a4d2f8a

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +25 -11
index.html CHANGED
@@ -1,12 +1,26 @@
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
- <iframe src="https://arena.opencompass.org.cn/" title="CompassArena"></iframe>
11
- </body>
12
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+
3
  <html>
4
+ <head>
5
+ <meta charset="UTF-8">
6
+ <title>CompassArena</title>
7
+ </head>
8
+
9
+ <style>
10
+ body{
11
+ margin: 0;
12
+ }
13
+
14
+ iframe{
15
+ display: block; /* iframes are inline by default */
16
+ height: 100vh; /* Set height to 100% of the viewport height */
17
+ width: 100vw; /* Set width to 100% of the viewport width */
18
+ border: none; /* Remove default border */
19
+ }
20
+ </style>
21
+
22
+ <body>
23
+ <iframe src="https://arena.opencompass.org.cn/" title="CompassArena"></iframe>
24
+ </body>
25
+
26
+ </html>