-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 1.02 KB
/
index.html
File metadata and controls
31 lines (31 loc) · 1.02 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Play Hangman!</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div id="gameContent">Test!</div>
<template id="hangman">
<div class="hangmanContainer">
<div class="hangmanRow">
<div></div>
<div class="hangmanHead"></div>
<div></div>
</div>
<div class="hangmanRow">
<div class="hangmanLeftHand"></div>
<div class="hangmanBody"></div>
<div class="hangmanRightHand"></div>
</div>
<div class="hangmanRow">
<div class="hangmanLeftLeg"></div>
<div></div>
<div class="hangmanRightLeg"></div>
</div>
</div>
</template>
<script type="module" src="game.js"></script>
</body>
</html>