-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
467 lines (434 loc) · 17 KB
/
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Musical Instruments</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9"
crossorigin="anonymous"
/>
<link rel="stylesheet" type="text/css" href="./styles.css" />
</head>
<body>
<div class="px-4 py-5 my-5 text-center">
<img
class="d-block mx-auto mb-4"
src="./images/map.png"
alt=""
height="200"
/>
<h1 class="display-5 fw-bold text-body-emphasis">Saregama</h1>
<div class="col-lg-6 mx-auto">
<p class="lead mb-4">
"Saregama" is a term used in Indian music, representing the first few
notes of the Indian musical scale, similar to "Do-Re-Mi" in Western
music. In Indian music, these notes are "Sa-Re-Ga-Ma-Pa-Dha-Ni".
"Saregama" forms the melodic foundation of a musical composition in
Indian classical and film music. It is essential for understanding and
creating melodies in the Indian music tradition."
</p>
</div>
</div>
<div class="b-example-divider"></div>
<div class="container col-xxl-8 px-4 py-5">
<div class="row flex-lg-row-reverse align-items-center g-5 py-5">
<div class="col-10 col-sm-8 col-lg-6">
<img
src="./images/sitar.jpg"
class="d-block mx-lg-auto img-fluid image-blurred-edge"
alt="Bootstrap Themes"
width="700"
height="500"
loading="lazy"
/>
</div>
<div class="col-lg-6">
<h1 class="display-5 fw-bold text-body-emphasis lh-1 mb-3">Sitar</h1>
<p class="lead">
The sitar is one of the most iconic stringed instruments in Indian
classical music. It is commonly associated with the melody and is
often used to play intricate and elaborate "ragas" (melodic scales).
Sitar players skillfully produce the "Saregama" notes and explore
various melodic patterns through the frets and strings.
</p>
</div>
</div>
</div>
<div class="mybtn">
<button type="button" class="btn btn-light instrument">
<img src="./images/sitar-icon.png" height="60px" />
</button>
</div>
<div class="d-flex gap-2 justify-content-center py-5">
<span
class="badge bg-primary-subtle border border-primary-subtle text-primary-emphasis rounded-pill sitar"
>Sa</span
>
<span
class="badge bg-success-subtle border border-success-subtle text-success-emphasis rounded-pill sitar"
>Re</span
>
<span
class="badge bg-warning-subtle border border-warning-subtle text-warning-emphasis rounded-pill sitar"
>Ga</span
>
<span
class="badge bg-info-subtle border border-info-subtle text-info-emphasis rounded-pill sitar"
>Ma</span
>
<span
class="badge bg-secondary-subtle border border-secondary-subtle text-secondary-emphasis rounded-pill sitar"
>Pa</span
>
<span
class="badge bg-danger-subtle border border-danger-subtle text-danger-emphasis rounded-pill sitar"
>Dha</span
>
<span
class="badge bg-dark-subtle border border-dark-subtle text-dark-emphasis rounded-pill sitar"
>Ni</span
>
</div>
<div class="b-example-divider"></div>
<div class="container col-xxl-8 px-4 py-5">
<div class="row flex-lg-row align-items-center g-5 py-5">
<div class="col-10 col-sm-8 col-lg-6">
<img
src="./images/Flute.jpg.jpg"
class="d-block mx-lg-auto img-fluid image-blurred-edge"
alt="Bootstrap Themes"
width="700"
height="500"
loading="lazy"
/>
</div>
<div class="col-lg-6">
<h1 class="display-5 fw-bold text-body-emphasis lh-1 mb-3">Flute</h1>
<p class="lead">
The bamboo flute is an instrument that is widely used in Indian
classical music. Flute players produce the "Saregama" notes by
controlling the breath and finger positions, allowing for beautiful
and emotive melodies
</p>
</div>
</div>
</div>
<div class="mybtn">
<button type="button" class="btn btn-light instrument">
<img src="./images/flute-icon.png" height="60px" />
</button>
</div>
<div class="d-flex gap-2 justify-content-center py-5">
<span
class="badge bg-primary-subtle border border-primary-subtle text-primary-emphasis rounded-pill flute"
>Sa</span
>
<span
class="badge bg-success-subtle border border-success-subtle text-success-emphasis rounded-pill flute"
>Re</span
>
<span
class="badge bg-warning-subtle border border-warning-subtle text-warning-emphasis rounded-pill flute"
>Ga</span
>
<span
class="badge bg-info-subtle border border-info-subtle text-info-emphasis rounded-pill flute"
>Ma</span
>
<span
class="badge bg-secondary-subtle border border-secondary-subtle text-secondary-emphasis rounded-pill flute"
>Pa</span
>
<span
class="badge bg-danger-subtle border border-danger-subtle text-danger-emphasis rounded-pill flute"
>Dha</span
>
<span
class="badge bg-dark-subtle border border-dark-subtle text-dark-emphasis rounded-pill flute"
>Ni</span
>
</div>
<div class="b-example-divider"></div>
<div class="container col-xxl-8 px-4 py-5">
<div class="row flex-lg-row-reverse align-items-center g-5 py-5">
<div class="col-10 col-sm-8 col-lg-6">
<img
src="./images/tabla.jpg"
class="d-block mx-lg-auto img-fluid image-blurred-edge"
alt="Bootstrap Themes"
width="700"
height="500"
loading="lazy"
/>
</div>
<div class="col-lg-6">
<h1 class="display-5 fw-bold text-body-emphasis lh-1 mb-3">Tabla</h1>
<p class="lead">
The tabla is a pair of hand drums that forms the backbone of rhythm
in Indian music. It consists of two drums, the smaller one is called
"dayan" (right hand) and the larger one "bayan" (left hand). Tabla
players use various strokes and techniques to create intricate
rhythmic patterns that complement the melodic aspect of the music
represented by "Saregama."
</p>
</div>
</div>
</div>
<div class="mybtn">
<button type="button" class="btn btn-light instrument">
<img src="./images/tabla-icon.png" height="60px" />
</button>
</div>
<div class="d-flex gap-2 justify-content-center py-5">
<span
class="badge bg-primary-subtle border border-primary-subtle text-primary-emphasis rounded-pill tabla"
>Sa</span
>
<span
class="badge bg-success-subtle border border-success-subtle text-success-emphasis rounded-pill tabla"
>Re</span
>
<span
class="badge bg-warning-subtle border border-warning-subtle text-warning-emphasis rounded-pill tabla"
>Ga</span
>
<span
class="badge bg-info-subtle border border-info-subtle text-info-emphasis rounded-pill tabla"
>Ma</span
>
<span
class="badge bg-secondary-subtle border border-secondary-subtle text-secondary-emphasis rounded-pill tabla"
>Pa</span
>
<span
class="badge bg-danger-subtle border border-danger-subtle text-danger-emphasis rounded-pill tabla"
>Dha</span
>
<span
class="badge bg-dark-subtle border border-dark-subtle text-dark-emphasis rounded-pill tabla"
>Ni</span
>
</div>
<div class="b-example-divider"></div>
<div class="container col-xxl-8 px-4 py-5">
<div class="row flex-lg-row align-items-center g-5 py-5">
<div class="col-10 col-sm-8 col-lg-6">
<img
src="./images/Harmonium.png"
class="d-block mx-lg-auto img-fluid image-blurred-edge"
alt="Bootstrap Themes"
width="700"
height="500"
loading="lazy"
/>
</div>
<div class="col-lg-6">
<h1 class="display-5 fw-bold text-body-emphasis lh-1 mb-3">
Harmonium
</h1>
<p class="lead">
The harmonium is a keyboard instrument that plays an essential role
in Indian classical and devotional music. It provides support to the
vocalist or instrumentalist by playing the "Saregama" notes and
maintaining the pitch and harmony of the composition.
</p>
</div>
</div>
</div>
<div class="mybtn">
<button type="button" class="btn btn-light instrument">
<img src="./images/harmonium-icon.png" height="60px" />
</button>
</div>
<div class="d-flex gap-2 justify-content-center py-5">
<span
class="badge bg-primary-subtle border border-primary-subtle text-primary-emphasis rounded-pill harmonium"
>Sa</span
>
<span
class="badge bg-success-subtle border border-success-subtle text-success-emphasis rounded-pill harmonium"
>Re</span
>
<span
class="badge bg-warning-subtle border border-warning-subtle text-warning-emphasis rounded-pill harmonium"
>Ga</span
>
<span
class="badge bg-info-subtle border border-info-subtle text-info-emphasis rounded-pill harmonium"
>Ma</span
>
<span
class="badge bg-secondary-subtle border border-secondary-subtle text-secondary-emphasis rounded-pill harmonium"
>Pa</span
>
<span
class="badge bg-danger-subtle border border-danger-subtle text-danger-emphasis rounded-pill harmonium"
>Dha</span
>
<span
class="badge bg-dark-subtle border border-dark-subtle text-dark-emphasis rounded-pill harmonium"
>Ni</span
>
</div>
<div class="b-example-divider"></div>
<div class="container col-xxl-8 px-4 py-5">
<div class="row flex-lg-row-reverse align-items-center g-5 py-5">
<div class="col-10 col-sm-8 col-lg-6">
<img
src="./images/violin.jpg"
class="d-block mx-lg-auto img-fluid image-blurred-edge"
alt="Bootstrap Themes"
width="700"
height="500"
loading="lazy"
/>
</div>
<div class="col-lg-6">
<h1 class="display-5 fw-bold text-body-emphasis lh-1 mb-3">
Violine
</h1>
<p class="lead">
Though originally not an Indian instrument, the violin has been
integrated into Indian classical music and plays a crucial role as
an accompanying instrument. It adds depth and richness to the
melodic aspects of the music, including the "Saregama" notes.
</p>
</div>
</div>
</div>
<div class="mybtn">
<button type="button" class="btn btn-light instrument">
<img src="./images/violin-icon.png" height="60px" />
</button>
</div>
<div class="d-flex gap-2 justify-content-center py-5">
<span
class="badge bg-primary-subtle border border-primary-subtle text-primary-emphasis rounded-pill violin"
>Sa</span
>
<span
class="badge bg-success-subtle border border-success-subtle text-success-emphasis rounded-pill violin"
>Re</span
>
<span
class="badge bg-warning-subtle border border-warning-subtle text-warning-emphasis rounded-pill violin"
>Ga</span
>
<span
class="badge bg-info-subtle border border-info-subtle text-info-emphasis rounded-pill violin"
>Ma</span
>
<span
class="badge bg-secondary-subtle border border-secondary-subtle text-secondary-emphasis rounded-pill violin"
>Pa</span
>
<span
class="badge bg-danger-subtle border border-danger-subtle text-danger-emphasis rounded-pill violin"
>Dha</span
>
<span
class="badge bg-dark-subtle border border-dark-subtle text-dark-emphasis rounded-pill violin"
>Ni</span
>
</div>
<div class="container col-xxl-8 px-4 py-5">
<div class="row flex-lg-row align-items-center g-5 py-5">
<div class="col-10 col-sm-8 col-lg-6">
<img
src="./images/sarod.jpg"
class="d-block mx-lg-auto img-fluid image-blurred-edge"
alt="Bootstrap Themes"
width="700"
height="500"
loading="lazy"
/>
</div>
<div class="col-lg-6">
<h1 class="display-5 fw-bold text-body-emphasis lh-1 mb-3">Sarod</h1>
<p class="lead">
The sarod is a beautiful musical instrument known for its soulful
and captivating sound. It is a stringed instrument that belongs to
the lute family and is widely used in the classical music of North
India, particularly in the Hindustani classical tradition. The sarod
is also occasionally used in certain forms of traditional and folk
music.
</p>
</div>
</div>
</div>
<div class="mybtn">
<button type="button" class="btn btn-light instrument">
<img src="./images/sarod-icon.png" height="60px" />
</button>
</div>
<div class="d-flex gap-2 justify-content-center py-5">
<span
class="badge bg-primary-subtle border border-primary-subtle text-primary-emphasis rounded-pill sarod"
>Sa</span
>
<span
class="badge bg-success-subtle border border-success-subtle text-success-emphasis rounded-pill sarod"
>Re</span
>
<span
class="badge bg-warning-subtle border border-warning-subtle text-warning-emphasis rounded-pill sarod"
>Ga</span
>
<span
class="badge bg-info-subtle border border-info-subtle text-info-emphasis rounded-pill sarod"
>Ma</span
>
<span
class="badge bg-secondary-subtle border border-secondary-subtle text-secondary-emphasis rounded-pill sarod"
>Pa</span
>
<span
class="badge bg-danger-subtle border border-danger-subtle text-danger-emphasis rounded-pill sarod"
>Dha</span
>
<span
class="badge bg-dark-subtle border border-dark-subtle text-dark-emphasis rounded-pill sarod"
>Ni</span
>
</div>
<div class="container">
<footer class="d-flex flex-wrap justify-content-between align-items-center py-3 my-4 border-top">
<div class="col-md-4 d-flex align-items-center">
<a href="/" class="mb-3 me-2 mb-md-0 text-body-secondary text-decoration-none lh-1">
<svg class="bi" width="30" height="24"><use xlink:href="#bootstrap"></use></svg>
</a>
<span class="mb-3 mb-md-0 text-body-secondary">Made by Amit Singh Kushwaha</span>
<br>
<span class="mb-3 mb-md-0 text-body-secondary">© All Rights Reserved</span>
</div>
<ul class="nav col-md-4 justify-content-end list-unstyled d-flex">
<li class="ms-3"><a class="text-body-secondary" href="https://www.linkedin.com/in/amit-singh5600"><img src="./images/linkedin-icon.png" class="bi" width="24" height="24" /></a></li>
</ul>
</footer>
</div>
<div class="empty-space" ></div>
<footer class="footer mt-auto py-3 bg-body-tertiary fixed-element">
<div class="container">
<span class="text-body-secondary">Instruction: To play any instruments, click on it's icon, then press the buttons or keyboard shortcuts(
<span class="badge bg-primary-subtle border border-primary-subtle text-primary-emphasis rounded-pill">a</span>
<span class="badge bg-success-subtle border border-success-subtle text-success-emphasis rounded-pill">s</span>
<span class="badge bg-warning-subtle border border-warning-subtle text-warning-emphasis rounded-pill">d</span>
<span class="badge bg-info-subtle border border-info-subtle text-info-emphasis rounded-pill">f</span>
<span class="badge bg-secondary-subtle border border-secondary-subtle text-secondary-emphasis rounded-pill">j</span>
<span class="badge bg-danger-subtle border border-danger-subtle text-danger-emphasis rounded-pill">k</span>
<span class="badge bg-dark-subtle border border-dark-subtle text-dark-emphasis rounded-pill">l</span>
)
</span>
</div>
</footer>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm"
crossorigin="anonymous"
></script>
<script src="./index.js"></script>
</body>
</html>