-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (32 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hangman</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<h1>Hangman</h1>
<h2>Vanilla JavaScript Hangman Game</h2>
<p>Use the alphabet below to guess the word, or click hint to get a clue. </p>
</div>
<div class="wrapper">
<div id="buttons">
</div>
<p id="catagoryName"></p>
<div id="hold">
</div>
<p id="mylives"></p>
<p id="clue">Clue -</p>
<canvas id="stickman">This Text will show if the Browser does NOT support HTML5 Canvas tag</canvas>
<div class="container">
<button id="hint">Hint</button>
<button id="reset">Play again</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>