-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (54 loc) · 2.33 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>
<title>Video Game Hangman</title>
<!-- Favicon credited to Quidditch33 http://piq.codeus.net/picture/231592/hangman -->
<link rel="shortcut icon" href="assets/images/favicon.png" type="image/x-icon">
<link rel="icon" href="assets/images/favicon.png" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="assets/css/reset.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous" />
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet" />
</head>
<body >
<div class="container" id="vertCenter">
<div class="row">
<div class="col-xs-12 text-center" id="instruction-text">
Welcome to video game hangman! Press any key to start
</div>
</div>
<div class="row buffer">
<div class="col-xs-12 text-center" id="status">
Ready Player One
</div>
</div>
<div class="row buffer">
<div class="col-xs-12 text-center" id="answer">
</div>
</div>
<div class="row buffer">
<div class="col-xs-4 text-center" id="lives">
Lives: 3
</div>
<div class="col-xs-4 text-center" id="wins">
Wins: 0
</div>
<div class="col-xs-4 text-center" id="losses">
Losses: 0
</div>
</div>
<div class="row">
<div class="col-xs-4 text-left" id="guessedLettersText">
Guessed Letters:
</div>
<div class="col-xs-8 text-left" id="guessedLetters">
</div>
</div>
</div>
<button id="mute">UNMUTE</button>
<!-- <button id="keyboard">Keyboard on mobile</button> IN PROGRESS-->
<!-- <input id="hiddenInput" style="visibility: hidden;"> -->
</body>
<script src="assets/javascript/game.js"></script>
</html>