-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (20 loc) · 756 Bytes
/
Copy pathindex.html
File metadata and controls
20 lines (20 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=7">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://fontawesome.com/search?q=fruit&o=r">
<link rel="shortcut icon" href="https://img.freepik.com/free-vector/hand-drawn-memory-game-card_23-2150138540.jpg" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
<title>Memory Game</title>
</head>
<body>
<div class="container">
<h2>Memory Game</h2>
<div class="game"></div>
<button class="reset" onclick="window.location.reload();">Reset Game</button>
</div>
</body>
</html>