-
Notifications
You must be signed in to change notification settings - Fork 0
/
blue_index.html
93 lines (84 loc) · 4.95 KB
/
blue_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
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
93
<!DOCTYPE html>
<html lang="en">
<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">
<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.0">
<title>The Melody Box</title>
<!-- 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/[email protected]/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">
<script src="https://kit.fontawesome.com/7327b5ea6e.js" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="blue_music.css">
</head>
<body>
<h1 id="title">
<span>The Melody Box</span>
<i class="fa fa-music" aria-hidden="true"></i>
</h1>
<p style="margin-top:7%"></p>
<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>
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="round_img">
<a href="blue_drums.html"> <img src="drum.jpg" class="img-fluid " alt="drum image"></a>
</div>
</div>
<div class="col-md-4">
<div class="round_img">
<a href="blue_xylophone.html"> <img src="https://cdn.pixabay.com/photo/2016/11/23/15/36/close-up-1853572_1280.jpg" class="img-fluid " alt="xylophone image"></a>
</div>
</div>
<div class="col-md-4">
<div class="round_img">
<a href="blue_piano.html"><img src="piano.jfif" class="img-fluid " alt="guitar image"></a>
</div>
</div>
</div>
</div>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/7.20.0/firebase-app.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/7.20.0/firebase-analytics.js"></script>
<script>
// Your web app's Firebase configuration
// For Firebase JS SDK v7.20.0 and later, measurementId is optional
var firebaseConfig = {
apiKey: "AIzaSyCJtfZrVoE4UHKhmTAbFYnf8N7QgIQbJVQ",
authDomain: "the-melody-box.firebaseapp.com",
databaseURL: "https://the-melody-box.firebaseio.com",
projectId: "the-melody-box",
storageBucket: "the-melody-box.appspot.com",
messagingSenderId: "884308969823",
appId: "1:884308969823:web:1295bd2b47bca101494eea",
measurementId: "G-RNR61GL7R5"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
firebase.analytics();
</script>
</body>
</html>