-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
481 lines (426 loc) · 15.3 KB
/
index.html
File metadata and controls
481 lines (426 loc) · 15.3 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
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
468
469
470
471
472
473
474
475
476
477
478
479
480
481
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Happy Musik</title>
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Script-style font for Happy Musik -->
<link
href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap"
rel="stylesheet"
/>
<style>
:root {
--purple: #3a005f;
--text-light: #f5f5f5;
--body-bg: #faf7ff;
--body-text: #333333;
--accent: #b389ff;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
sans-serif;
background-color: var(--body-bg);
color: var(--body-text);
line-height: 1.6;
}
header {
background-color: var(--purple);
color: var(--text-light);
padding: 1.5rem 1.5rem;
}
.header-inner {
max-width: 960px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
}
.site-title {
font-family: "Pacifico", "Brush Script MT", "Segoe Script", cursive;
font-size: 2.5rem;
letter-spacing: 0.04em;
}
.tagline {
font-size: 0.95rem;
opacity: 0.9;
max-width: 18rem;
text-align: right;
}
main {
max-width: 960px;
margin: 0 auto;
padding: 2rem 1.5rem 3rem;
display: flex;
flex-direction: column;
gap: 2.5rem;
}
.performer {
margin-left: 2em;
margin-bottom: 0.75em;
line-height: 1;
font-size: 0.95rem;
}
section {
background: #ffffff;
border-radius: 16px;
padding: 1.75rem 1.75rem 2rem;
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}
section h2 {
font-size: 1.6rem;
margin-bottom: 1rem;
color: var(--purple);
}
/* Mission content layout */
.mission-layout {
display: flex;
gap: 1.5rem;
align-items: flex-start;
flex-wrap: wrap;
}
.mission-layout img {
max-width: 280px;
width: 100%;
height: auto;
border-radius: 16px;
object-fit: cover;
flex-shrink: 0;
box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.mission-text p + p {
margin-top: 0.75rem;
}
.mission-text ul {
margin-top: 0.75rem;
padding-left: 1.2rem;
}
.mission-text li {
margin-bottom: 0.35rem;
}
/* Events */
.event {
border-left: 4px solid var(--accent);
padding-left: 0.9rem;
margin-top: 1rem;
}
.event-title {
font-weight: 600;
margin-bottom: 0.15rem;
}
.event-meta {
font-size: 0.95rem;
color: #555;
margin-bottom: 0.35rem;
}
footer {
background-color: var(--purple);
color: var(--text-light);
padding: 1rem 1.5rem;
}
.footer-inner {
max-width: 960px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 0.5rem;
font-size: 0.9rem;
}
.footer-inner a {
color: var(--text-light);
text-decoration: none;
}
.footer-inner a:hover {
text-decoration: underline;
}
@media (max-width: 600px) {
.header-inner {
flex-direction: column;
align-items: flex-start;
}
.tagline {
text-align: left;
}
.mission-layout {
flex-direction: column;
}
.mission-layout img {
max-width: 100%;
}
}
</style>
</head>
<body>
<header>
<div class="header-inner">
<div class="site-title">Happy Musik</div>
<div class="tagline">
Celebrating young classical musicians through free, live performances.
</div>
</div>
</header>
<main>
<!-- Mission & Description -->
<section id="mission">
<h2>Our Mission</h2>
<div class="mission-layout">
<img src="static/BigCello.png" alt="Close-up of a cello" />
<div class="mission-text">
<p>
<strong>Happy Musik celebrates the arts by helping young musicians
share their classical music through free, live performances in
the community.</strong>
</p>
<p>
We create welcoming opportunities for students ages 8–18 to grow
as artists, connect with audiences, and bring joy through acoustic
music. Our performers are elementary, middle, and high school
students who play:
</p>
<ul>
<li>Woodwind instruments</li>
<li>Violin and viola</li>
<li>Cello and bass</li>
<li>Piano</li>
</ul>
<p>
Performances feature classical repertoire—sometimes solo, and
sometimes in duets, trios, or quartets. Each event is friendly,
informal, and accessible, giving young artists a chance to build
confidence while enriching the lives of the people who listen.
</p>
</div>
</div>
</section>
<!-- Upcoming Performances & Events -->
<section id="events">
<h2>Upcoming Performances & Events</h2>
<p style="margin-top: 1.4rem; font-size: 0.95rem">
Check back for new performance dates and community concerts as they
are scheduled.
</p>
</section>
<!-- Past Performances & Events -->
<section id="events">
<h2>Past Performances & Events</h2>
<div class="event">
<div class="event-title">Happy Musik Performance at Watermark</div>
<div class="event-meta">
March 29, 2026 • 2:30-3:30pm • The
Watermark at Bellevue
</div>
<p>
Happy Musik presents accomplished young artists performing classical
and pieces in Flute, Violin, and Erhu (二胡).
</p>
<p class="performer">
<strong>Owen — Violin</strong><br />
Karl Bohm: <em>Introduction and Polonaise</em><br />
</p>
<p class="performer">
<strong>Chloe, Shanni, Ivy — Flute</strong><br />
Sefton Cottom: <em>Various Trouts – First Set for Three Flutes</em>
</p>
<p class="performer">
<strong>Ivy Qi, Shanni Li — Flute</strong><br />
Joe Hisaishi: <em>君をのせて (Carrying You)</em>
</p>
<p class="performer">
<strong>Chloe — Flute</strong><br />
Joe Hisaishi: <em>めぐる季節 (Changing Seasons)</em>
</p>
<p class="performer">
<strong>Owen — Erhu</strong><br />
Huang Haihuai: <em>Horse Racing</em>em><br />
<em>Rain in Jiangnan (Rain Shatters Jiangnan) (Chinese)</em>em>
</p>
</div>
<div class="event">
<div class="event-title">Happy Musik Performance at Kin On</div>
<div class="event-meta">
Feburary 22nd 2026 • 11:00 - 11:45AM • Kin On Seattle
</div>
<p>
Happy Musik presents accomplished young artists performing classical
in Cello and Piano.
</p>
<p class="performer">
<strong>Ivy — Cello</strong><br />
Bach: <em>First Complete Cello Suite</em>
</p>
<p class="performer">
<strong>Lily — Piano</strong><br />
M. Glinka: <em>Nocturne in E flat Major</em><br />
F. Chopin: <em>Polonaise in G-sharp Minor, Posth</em><br />
<em>Chinese Folk Song: Mo Li Hua 茉莉花</em>
</p>
<p class="performer">
<strong>Mila — Cello</strong><br />
Saint-Saëns: <em>The Swan</em><br />
David Popper: <em>Gavotte Op. 23, No. 2</em><br />
Béla Bartók - <em>Romanian Folk Dances</em>
</p>
</div>
<div class="event">
<div class="event-title">Happy Musik Performance at Watermark</div>
<div class="event-meta">
Feburary 8th 2026 • 2:30–3:30 PM • The
Watermark at Bellevue
</div>
<p>
Happy Musik presents accomplished young artists performing classical
and holiday pieces in Cello, Piano, Flute, Violin, and Erhu (二胡).
</p>
<p class="performer">
<strong>Owen — Violin</strong><br />
Karl Bohm: <em>Introduction and Polonaise</em><br />
</p>
<p class="performer">
<strong>Liam — Piano</strong><br />
Clementi: <em>Sonata op.40 no.1 I. Allegro</em><br />
Chopin: <em>Nocturne Op. 32 No. 2 in A-flat Major</em>
</p>
<p class="performer">
<strong>Mila — Cello</strong><br />
Saint-Saëns: <em>The Swan</em><br />
J.C. Bach: <em>Concerto</em> (III. movement)<br />
Bach: <em>Sarabande</em>
</p>
<p class="performer">
<strong>Owen — Erhu</strong><br />
<em>Huang Haihuai (Full of Joy, 喜洋洋)</em><br />
<em>Shan Hu Song (Ode to Coral, 珊瑚颂)</em>
</p>
</div>
<div class="event">
<div class="event-title">Happy Musik at the Bellettini</div>
<div class="event-meta">
January 17, 2026 • 2:00–3:00 PM • The Bellettini at
Bellevue
</div>
<p class="performer">
<strong>Liam — Piano</strong><br />
Clementi: <em>Sonata</em> op. 40 no. 1 — I. <em>Allegro</em> — 7’30” minutes<br />
Chopin: <em>Nocturne</em> Op. 32 No. 2 in A-flat Major — 5’30” minutes
</p>
<p class="performer">
<strong>Jeri — Flute</strong><br />
Cécile Chaminade: <em>Concertino</em> — 6’40” minutes
</p>
<p class="performer">
<strong>Chloe, Ivy, Shanni — Flute</strong><br />
Sefton Cottam: <em>Various Trouts</em> — First Set for Three Flutes — 5’40” minutes
</p>
<p class="performer">
<strong>Chloe — Flute</strong><br />
Franz Doppler: <em>Hungarian Pastoral Fantasy</em> — 5’30” minutes
</p>
<p class="performer">
<strong>Mila — Cello</strong><br />
Saint-Saëns: <em>The Swan</em> — 3’30” minutes<br />
J.C. Bach: <em>Concerto</em> (III. movement) — 5 minutes<br />
Bach: <em>Minuet</em> — 2’30” minutes
</p>
</div>
<div class="event">
<div class="event-title">Holiday Concert</div>
<div class="event-meta">
December 21, 2025 • 2:00–3:00 PM • The
Watermark at Bellevue
</div>
<p>
Happy Musik presents accomplished young artists performing classical
and holiday pieces in Cello, Piano, Flute, Violin, and Erhu (二胡).
</p>
<p class="performer">
<strong>Owen — Violin</strong><br />
Massenet: <em>Méditation</em> from <em>Thaïs</em>
</p>
<p class="performer">
<strong>Owen — Erhu</strong><br />
Huang Haihuai: <em>Horse Racing</em><br />
<em>Rain in Jiangnan</em> (<em>Rain Shatters Jiangnan</em>)
(Chinese)
</p>
<p class="performer">
<strong>Mila — Cello</strong><br />
Saint-Saëns: <em>The Swan</em><br />
J.C. Bach: <em>Concerto</em> (III. movement)<br />
Bach: <em>Sarabande</em>
</p>
<p class="performer">
<strong>Ember — Flute</strong><br />
Mozart: <em>Flute Concerto in D major</em>, K. 314<br />
J.S. Bach: <em>Sonata in E minor</em>, BWV 1034 — III.
<em>Andante</em>
</p>
<p class="performer">
<strong>Alex — Cello</strong><br />
J.S. Bach: <em>Cello Suite No. 2</em> — <em>Courante</em> <br />
François Francœur: <em>Sonata II</em><br />
Fazil Say: <em>Sivas</em><br />
Tchaikovsky: <em>Rococo Variations</em> — Theme & Variation 3
<br />
<em>Joy to the World</em>
</p>
<p class="performer">
<strong>Finale — Holiday Song Set</strong><br />
<em>Joy to the World</em> — Alex; <em>Santa Is Coming to Town</em> —
Ember;<br />
<em>Frosty the Snowman</em> — Mila; <em>Silent Night</em> — Owen
</p>
</div>
<div class="event">
<div class="event-title">Happy Musik Performance at Kin On</div>
<div class="event-meta">
November 11, 2025 • 10:00 AM • Kin On
</div>
<p>
Happy Musik presented a beautiful morning of live classical music
featuring violin, Erhu (二胡), and cello. The program opened with
“Méditation” from Thaïs, the famous 1894 operatic interlude by
French composer Jules Massenet, performed on violin with lyrical
warmth. The concert also included expressive Erhu selections and
concluded with a special highlight: a complete performance of Bach’s
First Cello Suite. Together, the blend of Western strings and
traditional Erhu created a rich and memorable musical experience for
the audience.
</p>
</div>
<div class="event">
<div class="event-title">Bach Suite at Sunrise of Bellevue</div>
<div class="event-meta">
Augest 15, 2024 • 3:30 PM • Sunrise of
Bellevue
</div>
<p>
Happy Musik presented an inspiring afternoon of live music at
Sunrise of Bellevue, where our young artists performed selected
excerpts from Bach’s Cello Suites. Through these timeless works, the
students shared both sensitivity and confidence, filling the room
with warmth and resonance. Residents and guests enjoyed a gentle,
reflective program that highlighted the beauty of solo cello and the
joy of young musicians bringing classical music into the community.
</p>
</div>
</section>
</main>
<footer>
<div class="footer-inner">
<div>© 2025 Happy Musik. All rights reserved.</div>
<div>
Contact:
<a href="mailto:musiknorthwest@gmail.com">musiknorthwest@gmail.com</a>
</div>
</div>
</footer>
</body>
</html>