-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (22 loc) · 747 Bytes
/
Copy pathindex.html
File metadata and controls
23 lines (22 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Animals Match</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400&display=swap" rel="stylesheet">
<script src="script.js" charset="utf-8"></script>
</head>
<body>
<div class="scoreBoard">
<h3>score</h3>
<h1 id="score">0</h1>
</div>
<div class="grid"></div>
<div class="audios">
<audio id="swapAudio" src="/Assets/Audio/Swap.mp3" controls></audio>
<audio id="selectAudio" src="/Assets/Audio/Select.mp3" controls></audio>
<audio id="clearAudio" src="/Assets/Audio/Clear.mp3" controls></audio>
</div>
</body>
</html>