-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (36 loc) · 1.22 KB
/
index.html
File metadata and controls
39 lines (36 loc) · 1.22 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
37
38
39
<!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">
<meta name="author" content="Anne Ensign">
<title>Memory Game</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Coiny&display=swap" rel="stylesheet">
<link href="./style.css" rel="stylesheet" type="text/css">
</head>
<body>
<header>
<h1>Memory Game</h1>
</header>
<div>
<button id="start">START GAME</button>
</div>
<main>
<div id="board">
</div>
<div id="won" style="display:none">
<h3>You Win!</h3>
<p id="time"></p>
<button id="play_again">PLAY AGAIN</button>
</div>
<script src="./script.js"></script>
</main>
<footer>
<ul>Website and Design by Anne Ensign</ul>
<li>Check out my GitHub <a href="https://www.GitHub.com/Eleanor-Shellstrop">@Eleanor-Shellstrop</a></li>
<li>Card images made by author using <a href="https://www.canva.com">www.Canva.com</a></li>
</footer>
</body>
</html>