-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (44 loc) · 1.33 KB
/
Copy pathindex.html
File metadata and controls
47 lines (44 loc) · 1.33 KB
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
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Drum Kit</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="img/Yugesh_Icon-NoBackground.png">
</head>
<body>
<div class="top-section">
<div class="bgimg">
<img src="img/background.png" alt="backgroundimg">
<h1 class="title">🥁Drum Kit🥁</h1>
</div>
</div>
<div class="content">
<button class="w but">w</button>
<button class="a but">a</button>
<button class="s but">s</button>
<button class="d but">d</button>
<button class="j but">j</button>
<button class="k but">k</button>
<button class="l but">l</button>
</div>
<div class="outro">
<h3>w - Tom 1</h3>
<h3>a - Tom 2</h3>
<h3>s - Tom 3</h3>
<h3>d - Tom 4</h3>
<h3>j - Snare</h3>
<h3>k - Crash</h3>
<h3>l - Kick Bass</h3>
</div>
<div class="credit">
<h2>Created by <br>
<span>
<img src="img/Yugesh_Icon-NoBackground.png" alt="yk">
</span>
<a href="https://www.linkedin.com/in/yugeshkumar3549/"><strong>Yugesh Kumar</strongs></a>
</h2>
</div>
<script src="script.js"></script>
</body>
</html>