-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (34 loc) · 1.15 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="this is my drum kit website to showcase the work I have done.">
<meta name="keywords" content="HTML ,CSS, JAVASCRIPT, DRUM-KIT website">
<meta name="author" content="Zeeshan Raza">
<title>Drum Kit</title>
<link rel="stylesheet" href="styles.css">
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<link href="https://fonts.googleapis.com/css?family=Arvo" rel="stylesheet">
</head>
<body>
<h1 id="title">Drum 🥁 Kit</h1>
<div class="set">
<button class="a A drum">a</button>
<button class="s S drum">s</button>
<button class="d D drum">d</button>
<button class="g G drum">g</button>
<button class="j J drum">j</button>
<button class="k K drum">k</button>
<button class="l L drum">l</button>
</div>
<footer>
| Copyright ©2022 All rights reserved |
<br>
<br>
| ZEESHAN RAZA |
</footer>
<script src="index.js" charset="utf-8"></script>
</body>
</html>