-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (74 loc) · 1.84 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>📝 for Macro</title>
<link rel="stylesheet" href="main.css" />
<style>
.title {
font-size: 3rem;
margin-top: 2rem;
}
.welcome {
font-size: 1.5rem;
margin-top: 1rem;
}
.link {
color: #0000ff;
}
.index_title {
font-size: 2rem;
margin-top: 2rem;
}
.index {
margin-top: 1rem;
}
.list_item {
font-size: 1.5rem;
}
footer {
position: absolute;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<h1 class="title">Notes for Macro</h1>
<p class="welcome">
Hello! This is my collection of notes for Pascal Michaillat's course on
Unemployment & Economic Slack. I will regularly update this website with
newly digitized information. Feel free to use these notes to supplement
your own. If you find any errors, please let me know! You can reach me at
<a class="link" href="mailto:sam@jevestobs.dev">sam@jevestobs.dev</a>
</p>
<h2 class="index_title">Unemployment</h2>
<ul class="index">
<li class="list_item">
<a href="unemployment/introduction/v1.html"
>Why Do We Care About Unemployment?</a
>
</li>
<li class="list_item">
<a href="unemployment/introduction/v2.html"
>Absence of Unemployment in the Competitive Model
</a>
</li>
<li class="list_item">
<a href="unemployment/matching_function/v3.html"
>Organization of the Labor Market
</a>
</li>
<li class="list_item">
<a href="unemployment/matching_function/v4.html">Unemployment Rate </a>
</li>
</ul>
<h2 class="index_title">Economic Slack</h2>
<footer>
<p>
Thanks to Pascal Michaillat for his excellent course on unemployment and
economic slack. You can find his courses on his website
<a class="link" href="https://pascalmichaillat.org/courses/">here</a>.
</p>
</footer>
</body>
</html>