-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsub5.html
More file actions
116 lines (112 loc) · 3.39 KB
/
Copy pathsub5.html
File metadata and controls
116 lines (112 loc) · 3.39 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
<!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 | NBS 소개</title>
<link rel="stylesheet" href="css/style.css">
<style>
.nbs-grid{
display: grid;
grid-template-columns: 260px 1fr 1fr;
gap: 2rem 2.5rem;
margin: 2rem 0;
}
.nbs-card{
display: flex;
flex-direction: column;
align-items: center;
gap: 1.2rem;
}
.nbs-label{
border:2px solid #000;
border-radius: 6px;
padding:1rem 1.4rem;
font-size:1.05rem;
font-weight:bold;
margin:0;
text-align:center;
line-height:1.3;
}
.nbs-media img{
width:100%;
aspect-ratio:1/1;
object-fit:cover;
border:1px solid #ccc;
border-radius:6px;
}
.nbs-info {
border:2px solid #ccc;
padding:1.2rem 1.4rem;
line-height:1.6;
color:#555;
}
.nbs-desc {
line-height: 2;
}
.nbs-news h3{
margin-top:0;
margin-bottom:.6rem;
font-size:1.05rem;
font-weight:700;
}
.nbs-news img{
margin-top: 20px;
width:100%;
aspect-ratio:1.5/1;
object-fit:cover;
border:1px solid #ccc;
border-radius:6px;
}
@media(max-width:900px){
.nbs-grid{grid-template-columns:260px 1fr;}
.nbs-news{grid-column:2;}
}
@media(max-width:600px){
.nbs-grid{grid-template-columns:1fr;}
.nbs-news{grid-column:auto;}
.nbs-label{width:100%;}
}
</style>
</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>
<h1>Netherlands Bach Society</h1>
<section class="nbs-grid">
<div class="nbs-card">
<h2 class="nbs-label">Netherlands Bach Society</h2>
<div class="nbs-media">
<img src="src/images/nbs.jpg">
</div>
</div>
<!-- ───────── ② 기관 소개 ───────── -->
<div class="nbs-info nbs-desc">
<p>
Netherlands Bach Society(NBS)는 1921년 네덜란드 나아르던에서 설립된 단체로, 세계에서 가장 오래된 바로크 음악 단체 중 하나이다. 2021년 창립 100주년을 맞아 바흐 전곡을 연주하고 유튜브에서 무료로 공개하는 <em>"All of Bach"</em> 프로젝트를 통해 바흐 음악을 전 세계에 알리고 있다.
</p>
</div>
<!-- ───────── ③ 최신 공연 정보 ───────── -->
<div class="nbs-info nbs-news">
<h3>Latest Performance</h3>
<p>2025-04-10 위긴겐 성당 — BWV 244 <em>St Matthew Passion</em> 전곡.</p>
<div class="nbs-news-img">
<img src="src/images/nbs_performance.jpg">
</div>
</div>
</section>
</main>
<footer>© 2025 Bach World | 자료 출처 : Netherlands Bach Society 외</footer>
</body>
</html>