-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (28 loc) · 821 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
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<title>Matrix Game</title>
</head>
<body>
<div class="img"></div>
<div class="container">
<h1>MATRIX GAME</h1>
<p>Guess All Characters From Picture</p>
<div id="totalWins"></div>
<h4 class="CW">Current Word</h4>
<div id="currentWord"></div>
<h4 class="GR">Guesses Remaining</h4>
<div id="remainingGuesses"></div>
<h4 class="LG">Letters Guessed</h4>
<div id="guessedLetters"></div>
</div>
<script src="js/game.js"></script>
</body>
<footer>
Copyright©
</footer>
</html>