-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (37 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Hangman!!</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Cabin+Sketch" rel="stylesheet">
</head>
<body>
<h1>Hangman</h1>
<svg viewBox="0 0 225 250">
<line class="gallows" x1="2" x2="210" y1="9" y2="9" />
<line class="gallows" x1="20" x2="20" y1="245" y2="9" />
<line class="gallows" x1="50" x2="20" y1="9" y2="40" />
<circle id="head" cx="115" cy="67" r="25" fill="none" />
<line id="body" x1="115" x2="115" y1="173" y2="93" />
<line id="left-arm" x1="115" x2="75" y1="116" y2="105" />
<line id="right-arm" x1="115" x2="155" y1="116" y2="105" />
<line id="left-leg" x1="115" x2="85" y1="173" y2="220" />
<line id="right-leg" x1="145" x2="115" y1="220" y2="173" />
</svg>
<div id="guessing"></div>
<div id="keypad">
<div id=keypad--row1></div>
<div id=keypad--row2></div>
<div id=keypad--row3></div>
</div>
<h2 id="new-game"><a>New Game</a></h2>
<div id="tally">
<span class="wins">Wins: </span><span class="wins" id="wins"></span>
<span class="losses">Losses: </span><span class="losses" id="losses"></span>
<span class="abortions">Abortions: </span><span class="abortions" id="abortions"></span>
</div>
</body>
<script src="script.js"></script>
</html>