-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Single Player Hangman</title>
<link rel="stylesheet" href="src/hangman.css">
</head>
<body>
<header>
<h1>Let's Play Hang Person!</h1>
</header>
<main>
<section id=border-1></section>
<section id="gallows">
<div id="win-or-lose" class="hidden-letter"><p id='end-msg' ></p></div>
<div><img id="frame" src="../assets/picture-frame-1.png"></div>
</section>
<section id="spacer"></section>
<section id="objective-word">
<p id="obj-letters"></p>
<p id="underline"></p>
</section>
<section id="letter-buttons">
<p id=row-one></p>
<p id=row-two></p>
<p id=row-three></p>
</section>
</main>
<script type="module" src="./src/single-player/single-player.js"></script>
</body>
</html>