-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathburrito.html
More file actions
56 lines (49 loc) · 1.6 KB
/
burrito.html
File metadata and controls
56 lines (49 loc) · 1.6 KB
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
<!DOCTYPE html>
<html>
<head>
<title>BurritoCraft - Games - The HTML Project SL</title> <link rel="icon" href="https://cdn-icons-png.flaticon.com/512/7784/7784482.png">
</head>
<h1>BurritoCraft</h1>
<body>
</body>
<head>
<style>
.footer {
position: right;
left: 0;
bottom: 0;
width: 100%;
background-color: grey;
color: white;
text-align: center;
}
</style><!DOCTYPE html>
<html>
<head>
<title>BurritoCraft - Games - The HTML Project SL</title>
<link rel="icon" href="https://cdn-icons-png.flaticon.com/512/7784/7784482.png">
<script>
function goFullscreen(id) {
var element = document.getElementById(id);
if (element.mozRequestFullScreen) {
element.mozRequestFullScreen();
} else if (element.webkitRequestFullScreen) {
element.webkitRequestFullScreen();
}
}
</script>
</head>
<body>
<iframe id="myframe" height="650px" width="100%" src="/game4" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe>
<button onclick="goFullscreen('myframe')">Fullscreen </button>
<!-- Rest of your code -->
</body>
</html>
</head>
<body>
<div class="footer">
<p><a href="dashboard.html" style="color: white;">Back to Dashboard</a></p>
<p><a href="/home/index.html" style="color: white;">Back to the NEW Dashboard</a></p>
</div>
</body>
</html>