-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblue_xylophone.html
92 lines (80 loc) · 4.83 KB
/
blue_xylophone.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png"sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png"sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- CSS only -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<!-- JS, Popper.js, and jQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!--GOOGLE FONTS-->
<link href="https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap" rel="stylesheet">
<meta charset="utf-8">
<meta name="description" content="A virtual musical instrument emulator with Drums, Piano and Xylophone with voice control." />
<meta name="keywords" content="virtual music, drums, piano, xylophone, free, instruments, virtual,voice control music, rgb themes" />
<meta name="author" content="Diganta Surya" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Xylophone</title>
<script src="https://kit.fontawesome.com/7327b5ea6e.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="blue_xylophone.css">
</head>
<body>
<div class="container-fluid">
<div class="container-fluid">
<nav class="navbar navbar-expand-lg navbar-light">
<button class="navbar-toggler custom-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto" style="padding-top:20px;">
<li class="nav-item active">
<a class="nav-link" href="blue_index.html"><span class="nav-color">Home</span> </a>
</li>
<li class="nav-item">
<a class="nav-link" href="blue_piano.html"><span class="nav-color">Piano</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#"><span class="nav-color activ">Xylophone</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="blue_drums.html"><span class="nav-color">Drums</span></a>
</li>
</ul>
</div>
</nav>
</div>
<h1 id="title">
<span>The Melody Box</span> <i class="fa fa-music" aria-hidden="true"></i>
</h1>
<div class="icon-bar">
<a href="https://istebits.com/" target="_blank"><img src="istebits.png" alt="ISTEBITS" class="abti"></img></a>
<a href="blue_about.html"><i class="fa fa-info-circle abt" aria-hidden="true"></i></a>
<a href="index.html"><i class="fas fa-music abtim" style="color:#fca652;"></i></a>
<a href="red_index.html"><i class="fas fa-music abtim" style="color:red;"></i></a>
<a href="green_index.html"><i class="fas fa-music abtim" style="color:green;"></i></a>
</div>
<h3 class="stitle" style="margin-top:2px;">XYLOPHONE <span id="microphone"><i class="fas fa-microphone-slash"></i></span></span>
<div>
</h3>
<div class="xylo">
<div class="DO xy c C">c</div>
<div class="RE xy d D">d</div>
<div class="MI xy e E">e</div>
<div class="FA xy f F">f</div>
<div class="SO xy g G">g</div>
<div class="LA xy a A">a</div>
<div class="TI xy b B">b</div>
</div>
</div>
</body>
<script src="xylophone.js" charset="utf-8"> </script>
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
</html>