Update index.html
Browse files- index.html +26 -6
index.html
CHANGED
@@ -1,7 +1,27 @@
|
|
1 |
<!DOCTYPE html>
|
2 |
-
<
|
3 |
-
|
4 |
-
|
5 |
-
<
|
6 |
-
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>
|