-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (25 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicon/favicon-16x16.png">
<link rel="manifest" href="./favicon/site.webmanifest">
<link rel="stylesheet" href="styles.css">
<title>The Hangman Quiz</title>
</head>
<body id="body">
<div id="logo"><img src="./assets/logo.png" alt="Game Logo"></div>
<div id="name-input">
<input type="text" class="button" id="input-box" placeholder="Enter your name here" maxlength="28" required>
<input type="submit" class="button" id="play-button" value="PLAY NOW">
</div>
<div>
<button class="button" id="info-button">How to Play</button>
</div>
<audio src="./assets/bgm1.mp3" hidden></audio>
<script src="index.js"></script>
</body>
</html>