-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (24 loc) · 899 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/styles.css" />
<title>Memory Game</title>
</head>
<body>
<div class="scores">
<h2>Extra Lives: <span class="playerLives"></span></h2>
<h2>Score: <span class="playerScore"></span></h2>
<h2>HighScore: <span class="playerHighScore"></span></h2>
<button style="display: none" id="peek">PEEK</button>
<button style="display: none" id="endGame">END GAME</button>
<button style="display: none" id="restartGame">RESTART GAME</button>
</div>
<section></section>
<script src="./js/player.js"></script>
<script src="./js/data.js"></script>
<script src="./js/main.js"></script>
</body>
</html>