-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (51 loc) · 1.62 KB
/
index.html
File metadata and controls
51 lines (51 loc) · 1.62 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hangman Mini-Game</title>
<link rel="stylesheet" href="./main.css" />
<link rel="icon" href="imgs/hangman-icon.ico" type="image/x-icon" />
</head>
<body>
<div class="container">
<div class="game-info">
<div class="logo-container" style="display: flex; align-items: center">
<div class="game-name">Hangman</div>
<img
src="./imgs/hangman-logo.png"
alt="hangman-logo"
style="width: 30px"
/>
</div>
<div class="category">Word From: <span></span> Category</div>
</div>
<hr />
<div class="row">
<div class="hangman-draw">
<div class="the-draw">
<div class="the-stand"></div>
<div class="the-hang"></div>
<div class="the-rope"></div>
<div class="the-man">
<div class="head"></div>
<div class="body"></div>
<div class="arms"></div>
<div class="legs"></div>
</div>
</div>
</div>
<div class="letters"></div>
</div>
<hr />
<div class="guessed-letters"></div>
<div class="info">
<img src="./imgs/info-icon.png" alt="info-icon" />
Need Help?
</div>
</div>
<audio id="success" src="./audio/correct-answer.mp3" preload="auto"></audio>
<audio id="fail" src="./audio/wrong-answer.mp3" preload="auto"></audio>
<script src="./main.js"></script>
</body>
</html>