friuns commited on
Commit
695454b
1 Parent(s): b4a8dd8

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +33 -11
index.html CHANGED
@@ -1,12 +1,34 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <iframe src="https://bolt.aidark.net/"></iframe>
11
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  </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>Full Screen Iframe</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
+
15
+ /* Make the iframe full screen and remove the border */
16
+ iframe {
17
+ position: absolute;
18
+ top: 0;
19
+ left: 0;
20
+ width: 100%;
21
+ height: 100%;
22
+ border: none; /* Removes the border */
23
+ margin: 0;
24
+ padding: 0;
25
+ overflow: hidden; /* Prevents scrollbars */
26
+ }
27
+ </style>
28
+ </head>
29
+ <body>
30
+
31
+ <iframe src="https://bolt.aidark.net/" frameborder="0" scrolling="no"></iframe>
32
+
33
+ </body>
34
  </html>