-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (45 loc) · 1.37 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="assets/css/reset.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/style.css">
<title>
90's Bands
</title>
</head>
<body class = "bg-dark">
<div class="row bg-white mt-3">
<div class = "col-sm-12">
<h1 class = "text-center">90's Band Hangman</h1>
</div>
</div>
<div class = "container">
<div class = "row mt-5">
<div class = "col-sm-9 col-md-9 col-lg-9 my-auto">
<p>Guesses: <span id = "Guess"></span></p>
<br>
<p> Wins: <span id = "Wins"></span></p>
<br>
<p> Losses: <span id = "Losses"></span></p>
<br>
<p> Letters: <span id = "Attempts"></span></p>
<br>
</div>
<div class = "col-sm-3 col-md-3 col-lg-3 my-auto">
<p class = "text-center"> Answer:
<br>
<span id = "displayanswer"></span> </p>
</div>
</div>
<div class = "row">
<h2> <span id ="win/lose"></span></h2>
</div>
</div>
<footer class="footer container-fluid bg-dark text-light">
<img class = "mx-auto d-block w-50" src = "assets/images/90sMusic.png">
</footer>
<script type="text/javascript" src ="assets/javascript/game.js"></script>
</body>
</html>