Files changed (1) hide show
  1. index.html +0 -33
index.html DELETED
@@ -1,33 +0,0 @@
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>