-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsub2.html
More file actions
108 lines (101 loc) · 2.81 KB
/
Copy pathsub2.html
File metadata and controls
108 lines (101 loc) · 2.81 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
<!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">
<style>
.art-grid{
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 48px 24px;
margin: 20px auto;
}
.art-item{
display:flex;
flex-direction:column;
}
.art-desc {
margin-bottom: 20px;
font-size: 16px;
font-weight: bold;
text-align: center;
border: 2px solid #000000;
border-radius:6px;
padding: 10px;
}
.art-link{
width: 100%;
aspect-ratio: 1/1.1;
overflow:hidden;
border:1px solid #ccc;
border-radius:6px;
background:#e0e0e0;
transition:transform .2s;
}
.art-link img{
width:100%;
height:100%;
object-fit:cover;
}
.art-link:hover{
transform:translateY(-4px);
}
@media screen and (max-width: 800px){
.art-grid {
grid-template-columns:repeat(2,1fr);
}
}
@media screen and (max-width: 650px){
.art-grid {
grid-template-columns:1fr;
}
}
</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>주요 작품</h1>
<section class="art-grid">
<div class="art-item">
<p class="art-desc">교회 음악</p>
<a href="church.html" class="art-link">
<img src="src/images/church_music.webp" alt="교회 음악">
</a>
</div>
<div class="art-item">
<p class="art-desc">건반 음악</p>
<a href="keyboard.html" class="art-link">
<img src="src/images/keyboard_music.jpg" alt="건반 음악">
</a>
</div>
<div class="art-item">
<p class="art-desc">관현악</p>
<a href="orchestra.html" class="art-link">
<img src="src/images/orchestra_music.jpg" alt="관현악">
</a>
</div>
<div class="art-item">
<p class="art-desc">대위법 실험 작품</p>
<a href="contrapuntus.html" class="art-link">
<img src="src/images/contrapuntus_music.webp" alt="대위법 실험 작품">
</a>
</div>
</section>
</main>
<footer>© 2025 Bach World | 자료 출처 : Netherlands Bach Society 외</footer>
</body>
</html>