-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (49 loc) · 1.59 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
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Psycic Game</title>
<link rel="stylesheet" href="./public/styles.css" />
</head>
<body>
<main class="container">
<h1 class="header">The Psychic Game</h1>
<br />
<h2 class="instructions">
Press any letter to test your paranormal abilities.
</h2>
<br />
<div class="letter-container">
<div class="letter-header">The letter is:</div>
<br />
<div id="theLetter" class="the-letter">?</div>
<br />
</div>
<div class="score-board">
<div id="wins" class="board">Wins: 0</div>
<br />
<div id="losses" class="board">Losses: 0</div>
<br />
<div id="livesLeft" class="board">Lives Left: 9</div>
<br />
<div class="board">Letters Guessed:</div>
<br />
<div class="board" id="lettersGuessed"></div>
</div>
<br />
<div class="button-warning">
<button id="button" class="button">Try Again</button>
<p class="warning">
Warning: Pressing the Try Again button returns lives left to 9 and
empties letters guessed, but it also increases losses by 1.
</p>
</div>
</main>
<footer class="footer">
Copyright © 2018 - <span id="year"></span> Holger Mueller
</footer>
<script type="text/javascript" src="./assets/scripts/psychic.js"></script>
</body>
</html>