-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.html
More file actions
38 lines (36 loc) · 831 Bytes
/
game.html
File metadata and controls
38 lines (36 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<style>
html {
margin: 0;
padding: 0;
height: 100%;
width: 100%
}
body {
margin: 0;
padding: 0;
height: 100%;
width: 100%
}
iframe {
position: fixed;
top: 0px;
left: 0px;
bottom: 0px;
right: 0px;
width: 100%;
height: 100%;
border: none;
margin: 0;
padding: 0;
overflow: hidden;
z-index: 999999;
}
</style>
</head>
<body>
<iframe src="index.html" />
</body>
</html>