-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 1.01 KB
/
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
<!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">
<title>Memory Game</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="icon" href="images/mFavicon.ico">
</head>
<body>
<div id="startScreen" style="display:block">
Memory Game
<button onclick="startGame()">Let's play</button>
<img src="images/startBackground.png" alt="background showing two playing cards.">
</div>
<div class="container">
<div class>
<h3 id="result" style="display:none">Pick two cards to start!</h3>
</div>
<div>
<div id="grid"></div>
</div>
</div>
<div id="endScreen" style="display:none">
Congratulations you found them all! <br>
<button type="button" onclick="reloadWindow()">Replay</button>
</div>
<script src="script.js"></script>
</body>
</html>