-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (31 loc) · 913 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rock & Roll || Drum kit</title>
<!-- custom styleSheet CDN-->
<link rel="stylesheet" href="./style.css">
<!-- website icon -->
<link rel="icon" type="image/x-icon" href="./Assets/images/drum-set.jpg">
</head>
<body>
<header id="title">
<p>Welcome! ready to Rock & roll 🥁</p>
</header>
<div class="set">
<button class="w drum">w</button>
<button class="a drum">a</button>
<button class="s drum">s</button>
<button class="d drum">d</button>
<button class="j drum">j</button>
<button class="k drum">k</button>
<button class="l drum">l</button>
</div>
<footer>
Made with ❤️ by HrishiD-codes
</footer>
<!-- custom javaScript CDN -->
<script src="./index.js"></script>
</body>
</html>