-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (25 loc) · 927 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
<!DOCTYPE html>
<html>
<head>
<meta content="width=device-width, initial-scale=1" name="viewport" />
<link href="styles.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Mochiy+Pop+One&display=swap" rel="stylesheet">
<link href="Images/memory.png" rel="icon"/>
<title>Memory Game</title>
</head>
<body>
<div class="heading">
<h1>Memory Game</h1>
</div>
<div class="score">
<h2>Your Score: <span id="points">0</span> | High Score: <span id="highPoints">0</span> </h2>
</div>
<div id="grid"></div>
<div class="displayResult">
<h2 id="result"></h2>
<button id="replayBtn">Reset</button>
</div>
<audio src="Audio/sfx-victory6.mp3" id="victory"></audio>
<script src="app.js"></script>
</body>
</html>