Spaces:
Running
Running
Update index.html
Browse files- index.html +32 -18
index.html
CHANGED
@@ -1,19 +1,33 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
</html>
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>3D Game Generator</title>
|
7 |
+
<style>
|
8 |
+
/* Remove padding and margin for body and html */
|
9 |
+
html, body {
|
10 |
+
margin: 0;
|
11 |
+
padding: 0;
|
12 |
+
height: 100%;
|
13 |
+
}
|
14 |
+
/* Make the iframe full screen and remove the border */
|
15 |
+
iframe {
|
16 |
+
position: absolute;
|
17 |
+
top: 0;
|
18 |
+
left: 0;
|
19 |
+
width: 100%;
|
20 |
+
height: 100%;
|
21 |
+
border: none; /* Removes the border */
|
22 |
+
margin: 0;
|
23 |
+
padding: 0;
|
24 |
+
overflow: hidden; /* Prevents scrollbars */
|
25 |
+
}
|
26 |
+
</style>
|
27 |
+
</head>
|
28 |
+
<body>
|
29 |
+
|
30 |
+
<iframe src="https://game.aidark.net/" frameborder="0" scrolling="no"></iframe>
|
31 |
+
|
32 |
+
</body>
|
33 |
</html>
|