-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (29 loc) · 1.05 KB
/
index.html
File metadata and controls
30 lines (29 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Cursed Snake</title>
<meta charset="UTF-8">
<link href="https://cursedprograms.github.io/cursedentertainment/cursedFavicon.png" rel="icon" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="content">
<h1>Cursed Snake</h1>
<div id="game-board"></div>
<div class="info">
<div id="score">Score: 0</div>
<div id="highScore">High Score: 0</div>
<div id="instructions">Press Space to Start</div>
</div>
</div>
<div class="icons_container">
<iframe
src="https://cursedprograms.github.io/cursedentertainment/iframes/social-media-icons/social-media-icons.html"
frameborder="0"></iframe>
</div>
<footer id="dynamicFooter"></footer>
<script src="https://cursedprograms.github.io/cursedentertainment/scripts/footer.js"></script>
<script src="index.js"></script>
</body>
</html>