-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathmario.html
65 lines (53 loc) · 1.75 KB
/
mario.html
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link rel="shortcut icon" href="Mario.gif" type="image">
<title>Mario | Alexx743</title>
</head>
<body>
<h2>Mario</h2>
<div class="topnav">
<a href="games.html">
<button title="Games" id="Games" class="divbutton"> Games </button>
</a>
<a href="Apps.html">
<button title="Apps" id="Apps" class="divbutton"> Apps</button>
</a>
<a href="index.html">
<button title="home" id="home" class="divbutton">home</button>
</a>
<a href="shooter.html">
<button title="shooter" class="divbutton">shooter</button>
</a>
<a href="sports.html">
<button title="sports" class="divbutton">Sports</button>
</a>
<a href="cars.html">
<button title="cars" class="divbutton">Cars</button>
</a>
</div>
<iframe src="https://universal-games-unblocked.vercel.app/projects/mario/index.html"></iframe>
<button
onclick="iffs('https://universal-games-unblocked.vercel.app/projects/mario/index.html')"
class="fullscreen"></button>
<script>
function iffs(href) {
const iframe = document.querySelector("iframe");
const stl = iframe.style;
stl.border = stl.outline = 'none';
stl.width = '100vw';
stl.height = '100vh';
stl.position = 'fixed';
stl.left = stl.right = stl.top = stl.bottom = '0';
iframe.src = href;
}
</script>
<script>
document.addEventListener("keydown",
async (e) => { if ("`" == e.key) window.parent.window.location.replace("https://google.com/") });
</script>
</body>
</html>