-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (53 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Musical Compositions by Christopher Kies</title>
</head>
<body>
<h1>Musical Compositions by Christopher Kies</h1>
<div id="compositions-container">
<h2 class="subcategory">Catalogue</h2>
<hr><hr>
<h2 class="musical-categories">Concertos</h2>
<div id="concertos-container"></div>
<h2>Orchestra</h2>
<div id="orchestra-container"></div>
<h2>Orchestra with Narration</h2>
<div id="orchestra-narr-container"></div>
<h2>Concert Band with Narration</h2>
<div id="concert-band-narr-container"></div>
<h2>Chamber Ensembles with Narration</h2>
<div id="chamber-ensemble-narr-container"></div>
<h2>Chamber Music with Double Reed Instruments</h2>
<div id="chamber-music-double-reed-container"></div>
<h2>Other Instrumental Works</h2>
<div id="other-instrumental-works"></div>
<h2>Piano Solo</h2>
<div id="piano-solo"></div>
<h2>Piano Four-Hands</h2>
<div id="piano-four-hands"></div>
<h2>Two Pianos</h2>
<div id="two-pianos"></div>
<h2>Pedagogical Piano</h2>
<div id="ped-piano"></div>
<h2>Instrumental Arrangements</h2>
<div id="instrumental-arrangements"></div>
<h2>Solo Voice and Accompaniment</h2>
<div id="solo-voice-and-accompaniment"></div>
<h2>Two or More Voices and Accompaniment </h2>
<div id="two-or-more-voices-accompaniment"></div>
<h2>Treble Chorus and Children's Chorus</h2>
<div id="treble-chorus-and-childrens-chorus"></div>
<h2>Mixed Chorus (SATB and Other)</h2>
<div id="mixed-chorus"></div>
</div>
<hr>
<div id="program-notes-container">
<h2 class="subcategory">Program Notes</h2>
<div id="program-notes"></div>
</div>
<script src="./scripts.js/index.js" type="module"></script>
</body>
</html>