-
-
Notifications
You must be signed in to change notification settings - Fork 241
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (32 loc) · 1.03 KB
/
index.html
File metadata and controls
35 lines (32 loc) · 1.03 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
<html>
<head>
<link rel="stylesheet" href="style.css">
<title>codebar.io - Hangman</title>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<header>
<img id="logo" src='https://raw.githubusercontent.com/codebar/planner/master/app/assets/images/logo.png' width='200' />
</header>
<div id="container">
<div class="board">
<div class="hangman-word"> </div>
<div class="remaining-guesses">
<span class="remaining">7</span> guesses left
</div>
<div class="console">
<input type="hidden" class="token"> </input>
<input type="text" maxlength=1 class="letter"> </input>
<button id="guess">Guess</button>
</div>
<div class="attempts"></div>
<button id="new-game">Start a new game</button>
</div>
<br/>
</div>
<footer>
<div id="content"> by <a href="https://codebar.io/">codebar</a> </div>
</footer>
</body>
</html>