ziqin commited on
Commit
f560d78
1 Parent(s): 55db5de

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +25 -18
index.html CHANGED
@@ -1,19 +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
- <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
+
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://web-1853702074335678467-higa.ksai.scnet.cn:58043/" title="CompassArena"></iframe>
24
+ </body>
25
+
26
+ </html>