-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
59 lines (50 loc) · 1.58 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
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Hangman Game</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous" />
<!-- Personal Stylesheet -->
<link rel="stylesheet" href="assets/css/style.css" />
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css?family=Henny+Penny" rel="stylesheet">
</head>
<body onkeypress="evalLetter()">
<div class="top-banner">
<img src="assets/images/banner-5.jpg" />
</div>
<div class="container main-content">
<div id="won">You Won!</div>
<div id="gameover">Game Over</div>
<div id="countDown"></div>
<div class="row mt-5">
<div class="col-lg-12">
<h2 class="text-center">Guess the following term from Harry Potter!</h2>
</div>
</div>
<div class="row results">
<div id="word" class="col-12 col-lg-12"></div>
</div>
<div class="row">
<div class="col-12 col-lg-3">
<h3>Wins:</h3>
<div id="wins"></div>
</div>
<div class="col-12 col-lg-3">
<h3>Losses:</h3>
<div id="losses"></div>
</div>
<div class="col-12 col-lg-3">
<h3>Guesses Remaining:</h3>
<div id="incorrect"></div>
</div>
<div class="col-12 col-lg-3">
<h3>Letters Guessed:</h3>
<div id="history"></div>
</div>
</div>
</body>
<!-- JS File -->
<script src="assets/javascript/game.js"></script>
</html>