-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (27 loc) · 879 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>😻 Drown-A-Cat</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="heading">Drown-A-Cat</div>
<div class="guesses">Guesses Left: <span id="remains">6</span> out of <span id="total">6</span></div>
<p>To save the purring kitty from getting drowned, you have to get the food name correct, within 6 guesses!</p>
<br>
<br>
<!--<button>Start!</button>-->
<!--<div id="rectangle-2"></div>
<div id="rectangle-1"></div>-->
<div id="word"></div>
<br><br>
<div id="keyboard"></div>
<br>
<br>
</div>
<script src="./scripts/drowncat.js"></script>
</body>
</html>