weichiang commited on
Commit
f49e585
·
verified ·
1 Parent(s): 6f5388a

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +31 -10
index.html CHANGED
@@ -1,13 +1,34 @@
1
-
2
  <!DOCTYPE html>
3
  <html>
4
- <head>
5
- <meta charset="utf-8" />
6
- <meta name="viewport" content="width=device-width" />
7
- <title>Chatbot Arena</title>
8
- <link rel="stylesheet" href="style.css" />
9
- </head>
10
- <body>
11
- <div>Please visit <a href="https://lmarena.ai" target="_blank">lmarena.ai</a>.</div>
12
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  </html>
 
 
1
  <!DOCTYPE html>
2
  <html>
3
+
4
+ <head>
5
+ <meta charset="utf-8" />
6
+ <meta name="viewport" content="width=device-width" />
7
+ <link rel="canonical" href="https://lmarena.ai/leaderboard" />
8
+ <title>LMArena Leaderboard</title>
9
+ <style>
10
+ body {
11
+ margin: 0;
12
+ }
13
+ .fullframe {
14
+ max-width: 100%;
15
+ max-height: 100%;
16
+ width: 100vw;
17
+ height: 100vh;
18
+ overflow: hidden;
19
+ }
20
+ .iframe-element {
21
+ min-width: 100%;
22
+ min-height: 100%;
23
+ }
24
+ </style>
25
+ </head>
26
+
27
+ <body>
28
+ <div class="fullframe">
29
+ <iframe class="iframe-element" allowfullscreen="true" frameborder="0" src="https://lmarena.ai/leaderboard">
30
+ </iframe>
31
+ </div>
32
+ </body>
33
+
34
  </html>