-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorchestra.html
More file actions
48 lines (46 loc) · 2.98 KB
/
Copy pathorchestra.html
File metadata and controls
48 lines (46 loc) · 2.98 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/emkJ0A7IfkY?si=nanZGdBmvTgSnHFe" 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>Concerto in A minor</strong><br>BWV 1065<br><br>네 대의 하프시코드와 현악 합주을 위한 협주곡으로, 비발디의 <네 대의 바이올린을 위한 협주곡>을 편곡한 것이다.</p>
</div>
<div class="music-item">
<iframe src="https://www.youtube.com/embed/ILKJcsET-NM?si=H_5DWbhNxtoCPcQq" 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>Concerto for two violins</strong><br>BWV 1043<br><br>두 명의 바이올린 연주자가 함께 협연하는 협주곡 형식으로, 두 바이올린 멜로디의 조화와 대위법적 표현이 돋보이는 작품이다.</p>
</div>
<div class="music-item">
<iframe src="https://www.youtube.com/embed/GEhc0cqXsYA?si=RQSikO2XHMAF5ZD5" 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>Brandenburg concerto no.3 : Allegro</strong><br>BWV 1048<br><br>이 곡은 균형 잡힌 악기 편성과 대위법적 기법이 돋보이는 예로 평가되며, 보이저 골든 레코드에 수록될 만큼 전 세계적으로 사랑받는다.</p>
</div>
</section>
</main>
<footer>© 2025 All of Bach | 자료 출처 : Netherlands Bach Society 외</footer>
</body>
</html>