-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (23 loc) · 1.19 KB
/
index.html
File metadata and controls
36 lines (23 loc) · 1.19 KB
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
<!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 href="https://fonts.googleapis.com/css?family=Roboto+Slab:100,300,400,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/reset.css" />
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/style.css" />
<title>Word Guess</title>
</head>
<body>
<h1 id="title">WORD GUESS</h1>
<div id="welcome">- Press any letter to play -</div>
<div id="game_board_container"><span id="game_board"></span></div>
<div id="guessed_container"><span id="guessed"></span></div>
<div id="win_loss_container">Wins: <span id="wins"></span>     Losses: <span id="losses"></span></div>
<div id="guesses_remaining_container"><span id="guesses_remaining"></span> </div>
<script src="assets/javascript/game.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
</body>
</html>