lewtun HF Staff commited on
Commit
3a93828
·
1 Parent(s): bb59eb2

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +26 -6
index.html CHANGED
@@ -1,7 +1,27 @@
1
  <!DOCTYPE html>
2
- <h1>GEM Results</h1>
3
-
4
- <!-- Add a bit of text -->
5
- <p>Submissions & Scores</p>
6
-
7
- <iframe src="https://gem-benchmark.com/results", width="400" height="200"></iframe>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Title of the document</title>
5
+ <style>
6
+ #target {
7
+ width: 400px;
8
+ height: 300px;
9
+ overflow-y: auto;
10
+ overflow-x: auto;
11
+ resize: both;
12
+ position: relative;
13
+ z-index: 2;
14
+ }
15
+ iframe {
16
+ width: 100%;
17
+ height: 100%;
18
+ border: none;
19
+ }
20
+ </style>
21
+ </head>
22
+ <body>
23
+ <div id="target">
24
+ <iframe src="https://gem-benchmark.com/results"></iframe>
25
+ </div>
26
+ </body>
27
+ </html>