-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (49 loc) · 1.4 KB
/
Copy pathindex.html
File metadata and controls
51 lines (49 loc) · 1.4 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
<!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>
.main_grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin: 30px auto;
}
@media screen and (max-width: 650px) {
.main_grid {
grid-template-columns: 1fr;
}
}
.main_grid img {
width: 100%;
height: 100%;
border: 10px solid #bdbdbd;
}
</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>
<section class="main_grid">
<img src="src/images/bach_portrait.png" alt="바흐 초상화">
<img src="src/images/bach_paper.jpg" alt="바흐 악보">
<img src="src/images/baroque.jpg" alt="바로크 삽화">
</section>
</main>
<footer>© 2025 All of Bach | 자료 출처 : Netherlands Bach Society 외</footer>
</body>
</html>