-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHOME.HTML
More file actions
50 lines (42 loc) · 1.97 KB
/
HOME.HTML
File metadata and controls
50 lines (42 loc) · 1.97 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
48
49
50
<!DOCTYPE html>
<html lang="en">
<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">
<!-- TITLE -->
<title>DRUM SET</title>
<!-- -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<!-- -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
<!-- -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<!-- -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.min.js" integrity="sha384-fbbOQedDUMZZ5KreZpsbe1LCZPVmfTnH7ois6mU1QK+m14rQ1l2bGBq41eYeM/fS" crossorigin="anonymous"></script>
<!-- CSS FILE -->
<link rel="stylesheet" href="HOME.CSS">
<!-- FAVICON -->
<link rel="icon" href="images/drum-set.ico">
</head>
<body>
<!-- SECTION - 1 -->
<section>
<h1>Drum 🥁 Set</h1>
<div class="set">
<button class="a drum">a</button>
<button class="s drum">s</button>
<button class="d drum">d</button>
<button class="f drum">f</button>
<button class="j drum">j</button>
<button class="k drum">k</button>
<button class="l drum">l</button>
</div>
</section>
<!-- SECTION - 2 -->
<section class="footer">
<h6>© Copyright 2023 <span class="akashnegi">Akash Negi</span>. All rights reserved.</h6>
</section>
<script src="HOME.JS" charset="UTF-8"></script>
</body>
</html>