-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (24 loc) · 854 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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Memory Card Game</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" sizes="32x32" href="./Image/Brain.png">
<link href='https://fonts.googleapis.com/css?family=Aboreto' rel='stylesheet'>
</head>
<body>
<h1>Memory Card</h1>
<div class="grid-container"></div>
<div class="display">
<p>Attempts: <span class="score"></span></p>
<div class="time">Time Left: 60s</div>
</div>
<div class="actions">
<button onclick="restart()">RESTART</button>
</div>
<audio autoplay loop id="Myaudio"> <source src="./Audio/BackgroundGame.mp3" type="audio/mpeg"> </audio>
<script src="script.js"></script>
</body>
</html>