-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·50 lines (48 loc) · 2.05 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!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=Josefin+Sans:300,400,400i|Nunito:300,300i" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" type="image/png" href="img/favicon.png">
<title>Memory Game</title>
</head>
<body class="container">
<div class="heading">
<h1 class="heading--h1">
<!-- Jon Snow! -->
You Remember Nothing!
</h1>
<div class="heading__nav">
<input type="button" class="btn" onclick="newGame()" value="New Game" />
<input type="button" class="btn" onclick="startGame(4)" value="4x4" />
<input type="button" class="btn" onclick="startGame(5)" value="5x4" />
<input type="button" class="btn" onclick="startGame(6)" value="6x4" />
</div>
</div>
<div id="board" class="card__board"></div>
<!-- <div id="popup1" class="overlay">
<div class="popup">
<h2>WIN</h2>
<a class="close" href=# >×</a>
<div class="content-1">
Congratulations you're a winner 🎉🎉
</div>
<div class="content-2">
<p>You made <span id=finalMove> </span> moves </p>
<p>in <span id=totalTime> </span> </p>
<p>Rating: <span id=starRating></span></p>
</div>
<button id="play-again"onclick="playAgain()">
Play again 😄</a>
</button>
</div>
</div> -->
<div class="footer">
Copyright © 2019 <a href="http://elizabethsetton.com/" class="copyright">Elizabeth Setton</a>
</div>
<script type="text/javascript" src="javascript/jsfile.js"></script>
</body>
</html>