-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhangman.html
More file actions
60 lines (56 loc) · 1.62 KB
/
hangman.html
File metadata and controls
60 lines (56 loc) · 1.62 KB
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
60
<!DOCTYPE HTML>
<head>
<link rel='stylesheet' type='text/css' href='stylesheet.css'>
<title>Hangman!</title>
</head>
<body>
<header>
<h1 class='center'>Hangman</h1>
</header>
<p class='center'>To play, enter a secret word:</p>
<br>
<div class='center'><input id='secret' type='password'>
<button id='play'>Play!</button></div>
<br>
<div class='center'>
<div id='board'><img id='boardpic' src='https://cloud.githubusercontent.com/assets/8210523/6953499/b94c87da-d897-11e4-9982-3f10fad1e897.gif'></div>
<div id='letters'><!Letter Buttons>
<button class='opt'>A</button>
<button class='opt'>B</button>
<button class='opt'>C</button>
<button class='opt'>D</button>
<button class='opt'>E</button>
<button class='opt'>F</button>
<button class='opt'>G</button>
<button class='opt'>H</button>
<button class='opt'>I</button>
<button class='opt'>J</button>
<button class='opt'>K</button>
<button class='opt'>L</button>
<button class='opt'>M</button>
<button class='opt'>N</button>
<button class='opt'>O</button>
<button class='opt'>P</button>
<button class='opt'>Q</button>
<button class='opt'>R</button>
<button class='opt'>S</button>
<button class='opt'>T</button>
<button class='opt'>U</button>
<button class='opt'>V</button>
<button class='opt'>W</button>
<button class='opt'>X</button>
<button class='opt'>Y</button>
<button class='opt'>Z</button>
</div>
</div>
<br><br>
<div id='footer' class='center'>
<center><table id='solution' class='center'>
</table>
</center>
<br>
<button id='restart'>New Game</button>
</div>
<script src='jquery-1.11.2.min.js'></script>
<script type='text/javascript' src='hangman.js'></script>
</body>