-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (27 loc) · 853 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 lang="en">
<head>
<meta charset="UTF-8" />
<title>Memory Game!</title>
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400&display=swap" rel="stylesheet">
</head>
<body>
<h1 class="title">MEMORY X GAME</h1>
<div id="scores">
<span>Current Guesses</span>
<div id="guesscount"></div>
<span>Best Score</span>
<div id="bestscore"></div>
</div>
<div id="gamediv">
<div id="start">Start</div>
<div id="game" class="">
</div>
</div>
<div id="buttons">
<div id="reset">Reset</div>
</div>
<script src="script.js"></script>
</body>
</html>