-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 1.31 KB
/
Copy pathindex.html
File metadata and controls
29 lines (29 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Musical Instrument</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<header>
<div class="mainhdng">
<h1>Instrument Sound <i class="fa-solid fa-drum"></i></h1>
</div>
</header>
<main>
<h1 class="flute" onclick="new Audio('flute audio.wav').play()">Flute</h1>
<h1 class="drums" onclick="new Audio('drums audio.wav').play()">Drums</h1>
<h1 class="violene" onclick="new Audio('violin audio.wav').play()">Violin</h1><br>
<h1 class="piano" onclick="new Audio('piano audio.wav').play()">Piano</h1>
<h1 class="guitar" onclick="new Audio('guitar audio.wav').play()">Guitar</h1>
<h1 class="tabala" onclick="new Audio('tabala audio.mp3').play()">Tabala</h1>
</main>
<hr>
<footer>
<p>Copyright @ 2024 <span>Jishnu Webdev</span> | Provided by <span>Jishnu Webdev</span></p>
</footer>
</body>
</html>