-
Notifications
You must be signed in to change notification settings - Fork 2
/
index1.html
26 lines (26 loc) · 1007 Bytes
/
index1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hangman Game by HangmanHeroes</title>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<link rel="shortcut icon" href="png-transparent-pink-and-black-game-controller-illustration-video-game-gamepad-joystick-icon-the-game-console-game-cartoon-handle.png" type="image/x-icon">
</head>
<body>
<div class="container">
<div id="options-container"></div>
<div id="letter-container" class="letter-container hide"></div>
<div id="user-input-section"></div>
<canvas id="canvas"></canvas>
<div id="new-game-container" class="new-game-popup hide">
<div id="result-text"></div>
<button id="new-game-button">New Game</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>