-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpacman.html
More file actions
39 lines (37 loc) · 1003 Bytes
/
pacman.html
File metadata and controls
39 lines (37 loc) · 1003 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
39
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-53H3NGLGQM"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-53H3NGLGQM');
</script>
<meta http-equiv="X-Frame-Options" content="DENY">
<meta charset="UTF-8">
<title>HSR Games: Hemesh Pac-Man</title>
<style>
body {
margin: 0;
background: #111;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
iframe {
border: none;
width: 640px;
height: 480px;
box-shadow: 0 0 20px cyan;
border-radius: 12px;
}
</style>
</head>
<body>
<!-- Embed Pac-Man game -->
<iframe src="https://scratch.mit.edu/projects/324176153/embed" allowtransparency="true" width="485" height="402" frameborder="0" scrolling="no" allowfullscreen></iframe>>
</body>
</html>