-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkeyboard.html
More file actions
48 lines (46 loc) · 2.97 KB
/
Copy pathkeyboard.html
File metadata and controls
48 lines (46 loc) · 2.97 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>All of Bach | 건반 음악</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="navbar">
<div class="logo"><a href="index.html"><img src="src/images/logo.jpg"></a></div>
<nav>
<a href="sub1.html">바흐의 생애</a>
<a href="sub2.html">주요 작품</a>
<a href="sub3.html">음악적 특징</a>
<a href="sub4.html">주요 악기</a>
<a href="sub5.html">NBS 소개</a>
</nav>
</div>
</header>
<main>
<div class="music-row">
<h2 class="music-label">건반 음악</h2>
<p class="music-desc">
바흐는 오르간과 쳄발로 등 다양한 건반악기를 위해 수많은 작품을 남겨, 건반 음악의 기초를 확립했다.
</p>
</div>
<section class="music-grid">
<div class="music-item">
<iframe src="https://www.youtube.com/embed/4TxQyLZXpzI?si=uEK3fhImJ2lFOuNG" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<p class="music-caption"><strong>Sonata no. 4 in E minor</strong><br>BWV 528<br><br>이 곡은 세 개의 악장으로 구성되어 있으며, 3:16부터 나오는 2악장은 특유의 멜로디로 청중들에게 감성적인 울림을 선사한다</p>
</div>
<div class="music-item">
<iframe src="https://www.youtube.com/embed/bwPekl2xMMk?si=h2SDMu2cxXZwEuwD" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<p class="music-caption"><strong>English Suite No. 2 : I. Prelude</strong><br>BWV 807<br><br>이 곡은 매우 빠르고 긴장감있는 형식으로 짜여져 있으며, 즉홍적이고 대위적인 구성으로 연주자의 높은 표현력과 기교를 요구한다.</p>
</div>
<div class="music-item">
<iframe src="https://www.youtube.com/embed/lzjhCkJm6DQ?si=kEnQz4O9_MIc-6yU" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<p class="music-caption"><strong>Partita No. 2 : V. Rondeaux</strong><br>BWV 826<br><br>이 악장은 특정한 멜로디가 여러 번 반복되는 구조로, 통통 튀는 음율과 대위법적 선율이 어우러져 생동감 넘치는 분위기를 전달한다.</p>
</div>
</section>
</main>
<footer>© 2025 All of Bach | 자료 출처 : Netherlands Bach Society 외</footer>
</body>
</html>