-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchurch.html
More file actions
48 lines (46 loc) · 3.13 KB
/
Copy pathchurch.html
File metadata and controls
48 lines (46 loc) · 3.13 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">
바흐는 독실한 기독교인이었다. 그는 자신의 경건한 신앙을 음악으로 표현하고자 300개가 넘는 종교 음악을 작곡하였다.
</p>
</div>
<section class="music-grid">
<div class="music-item">
<iframe src="https://www.youtube.com/embed/Zry9dpM1_n4?si=31K3TcSdhaYtDOjy" 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>Erbarme dich, mein Gott<br>저를 불쌍히 여기소서</strong><br>Matthew Passion BWV 244<br><br>마태수난곡 중 가장 유명하고 많이 연주되는 아리아로, 자신의 죄를 반성하고 참회하는 베드로의 심정을 노래한 곡이다.</p>
</div>
<div class="music-item">
<iframe src="https://www.youtube.com/embed/dm9nqjfCwVo?si=MCjkOkAy3bfFDMF3" 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>Ach, Herr, lehre uns bedenken<br>우리의 죽음을 기억하게 해주소서</strong><br>BWV106<br><br>이 곡은 BWV106 칸다타 중 일부로, 죽음의 필연성을 깨닫고 이를 통해 지혜를 얻도록 신에게 간구하는 내용을 포함하고 있다.</p>
</div>
<div class="music-item">
<iframe src="https://www.youtube.com/embed/8lNiJ0_Tkxw?si=1D1Yqfu9-fsiRF00" 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>Liebster Gott, wenn werd ich sterben<br>사랑하는 하느님, 저는 언제 죽게 되나이까?</strong><br>BWV 483<br><br>죽음을 슬퍼할 필요 없으며, 오히려 신을 빨리 뵐 수 있어 좋다는 가사를 통해, 죽음에 대해 예찬하는 당시의 종교상을 알 수 있다.</p>
</div>
</section>
</main>
<footer>© 2025 All of Bach | 자료 출처 : Netherlands Bach Society 외</footer>
</body>
</html>