-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (31 loc) · 1.55 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HangUs.io</title>
<!-- Bootstrap 5 -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="apple-touch-icon" sizes="180x180" href="./images/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./images/favicon/favicon-16x16.png">
<link rel="manifest" href="./images/favicon/site.webmanifest">
</head>
<body>
<div class="container">
<img src="./images/logo.png" alt="" width="300"> <br> <br>
<div class="float-end">Lives Lost: <span id="wrongGuess">0</span> / 6</div>
<br>
<div class="text-center">
<img src="./images/animations (Light mode)/L0.png" alt="" id ="pic" width="250">
<p>Guess the Fruit!</p>
<p id="wordStatus">Word status</p>
<p><div id="keyboardRow1">Row1</div></p>
<p><div id="keyboardRow2">Row2</div></p>
<p><div id="keyboardRow3">Row3</div></p> <br>
<button type="reset" class="btn btn-secondary" onclick="restart()">Restart Game</button>
</div>
</div>
<script src="./hangman_game.js"></script>
</body>