-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (39 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hangman Game</title>
<link rel="stylesheet" href="style.css">
<script src="scripts/word-list.js" defer> </script>
<script src="scripts/script.js" defer> </script>
</head>
<body>
<div class="game-modal">
<div class="content">
<img src="images/lost.gif" alt="lost-gif">
<h4>Game Over!</h4>
<p>The correct word was: <b>rainbow</b></p>
<button class="play-again">Play again</button>
</div>
</div>
<div class="container">
<div class="hangman-box">
<img src="images/hangman-0.svg" alt="hangman-img">
<h1>Hangman Game</h1>
</div>
<div class="game-box">
<ul class="word-display"> </ul>
<h4 class="hint-text">
Hint :
<b>Lorem ipsum dolor </b>
</h4>
<h4 class="guess-text">
Incorect guess :
<b>0 / 6</b>
</h4>
<div class="keyboard"></div>
</div>
</div>
</body>
</html>