-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (26 loc) · 987 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
41
<!DOCTYPE <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Psychic Word Game</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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" />
</head>
<body>
<div class="container">
<h1>PSYCHIC WORD GAME</h1>
<h2> GUESS WHAT LETTER I'M THINKING OF ? <h2>
<h3> WINS <h3>
<h4 id="winCount"> 0 </h4>
<h3> LOSSES <h3>
<h4 id="lossCount"> 0 </h4>
<h3> REMAINING GUESSES <h3>
<h4 id="guessCount"> 10 </h4>
<h3> LETTERS YOU'VE INCORRECTLY GUESSED: <h3>
<h4 id="lettersGuessed"> </h4>
</div>
<script src="assets/javascript/game.js"></script>
</body>
</html>