-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 loc) · 1.12 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="https://assets.samsilver.ca/zombie-arcade/icon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
:root {
background-color: black;
}
</style>
<title>Zombie Arcade</title>
</head>
<body>
<noscript>
<div class="no-js">
<h3>Please enable JavaScript to play!</h3>
<a href="https://www.enable-javascript.com/">How to enable JavaScript</a>
<div style="margin-top: 10px;" id="socials">
<a href="https://github.com/sam55silver/zombie-arcade">GitHub</a>
<a href="https://www.twitter.com/sam55silver">Twitter</a>
</div>
</div>
</noscript>
<div id="container">
<div id="app"></div>
<div id="socials" style="display: none;">
<a href="https://github.com/sam55silver/zombie-arcade">GitHub</a>
<a href="https://www.twitter.com/sam55silver">Twitter</a>
</div>
</div>
<script type="module" src="/main.js"></script>
</body>
</html>