-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (26 loc) · 1021 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="assets/css/styles.css">
<link href="https://fonts.googleapis.com/css?family=Baloo+Bhai|Fascinate+Inline&display=swap" rel="stylesheet">
<title>Document</title>
</head>
<body>
<head>
<div class="header">Word Guess</div>
</head>
<div class="main-wrapper">
<div class="guess-div">Guess the word: <br> <span id="hidden-word"></span></div>
<div id="start-game"></div>
<div class="score-wrapper">
<div class="attempt-div">Attempts remaining: <span id=attempts-remaining></span></div>
<div class="letter-div">Letters used: <span id="letters-used"></span></div>
<div class="win-div">Wins: <span id="wins-total"></span></div>
</div>
</div>
</body>
<script src="wordguess.js"></script>
</html>