-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (53 loc) · 1.91 KB
/
index.html
File metadata and controls
59 lines (53 loc) · 1.91 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>금융경제학</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
max-width: 800px;
margin: 50px auto;
padding: 20px;
line-height: 1.6;
}
h1 {
color: #2c3e50;
border-bottom: 3px solid #3498db;
padding-bottom: 10px;
}
.links {
margin-top: 30px;
}
a {
color: #3498db;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>금융경제학: 파이썬을 활용한 금융시장과 통화정책의 이해</h1>
<p><strong>저자:</strong> 박기영 (연세대 경제학부)</p>
<p><strong>출판사:</strong> 시그마프레스</p>
<p><strong>출판연도:</strong> 2026</p>
<hr>
<h2>소개</h2>
<p>이 사이트는 『금융경제학: 파이썬을 활용한 금융시장과 통화정책의 이해』 교재의 코드 저장소입니다.</p>
<div class="links">
<h2>링크</h2>
<ul>
<li><a href="https://github.com/FinancialEconomicsPython/book">📚 GitHub 저장소</a></li>
<li><a href="https://github.com/FinancialEconomicsPython/book/tree/main/chapters">💻 교재 코드 (Chapters)</a></li>
<li><a href="https://github.com/FinancialEconomicsPython/book/tree/main/readings">📖 추가 읽을거리</a></li>
<li><a href="https://github.com/FinancialEconomicsPython/book/tree/main/utils">🛠️ Utils</a></li>
</ul>
</div>
<hr>
<p><small>© 2026 박기영. CC BY 4.0 라이선스</small></p>
</body>
</html>