-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
32 lines (28 loc) · 977 Bytes
/
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Permanent+Marker" rel="stylesheet">
<link rel="stylesheet" href="src/style.css">
<script src="src/index.js" charset="utf-8"></script>
<title>The Upside Down</title>
</head>
<body>
<header>
<div class="typewriter center">
<h1>The Upside Down</h1>
</div>
<!-- <a href="https://strangerthings.fandom.com/wiki/Stranger_Things_Wiki" target="_blank">About the Stranger Things</a> -->
</header>
<div class="new_user_form_div">
</div>
<div class="new_continued_game center">
</div>
<div class="game_canvas center">
</div>
<audio id="bg_music" preload="none" src="./assets/stranger_things_theme.mp3" loop="loop"></audio>
<div class="slider-wrapper">
<input type="range" min="1" max="100" value="50" class="slider" id="myRange">
</div>
</body>
</html>