-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (45 loc) · 1.61 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
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./styles/main.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap"
rel="stylesheet"
/>
<script src="./scripts/app.js" charset="utf-8"></script>
<title>Document</title>
</head>
<body>
<div class="leftpage">
<div class="topleft">fear the ghost</div>
<div class="bottomleft">worship the ghost</div>
</div>
<div class="gameSpace">
<div class="victory">You won the game! You have the foresight and dexterity of a true ninja. Press Enter to reset</div>
<div class="defeat">You lost! Go back to the dojo and practice. <br> <br> Press Enter to reset</div>
<div class="lifelost"></div>
<div class="playerStatsBanner">
<div class="score">
<div class="scoreText">Current Score</div>
<div class="scoreValue">1240</div>
</div>
<div class="pressEnter">Press Enter to Begin!</div>
<div class="livesRemaining">
<div class="livesRemainingValue"></div>
<div class="livesRemainingText">Lives Left</div>
</div>
</div>
<div class="grid">
<audio src=""></audio>
</div>
</div>
<div class="rightpage">
<div class="topright">study the ghost</div>
<div class="bottomright">become the ghost</div>
</div>
</body>
</html>