-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
113 lines (102 loc) · 2.77 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
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
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FDND Opleidingscommmissie</title>
<meta name="description" content="Opleidingscommisie van de HBO opleiding voor Frontend design en development in Amsterdam.">
<style>
body{
color: #fff;
background-color: #050542;
font-family: Open Sans,sans-serif;
font-size: 1.2em;
margin: 2em 1em; /* margin: 2em; */
}
@media (min-width: 30em) {
body{
margin: 3em 2em;
}
}
a{
color: #fff;
}
a:hover{
background-color:#fff;
color: #050542;
}
a:focus{
background-color:#fffc86;
color: #050542;
}
main{
}
header{
position: sticky;
z-index: -100;
top: 1rem;
}
h1{
color: #66e5bf;
margin: 1rem 0;
font-size: 3rem;
font-size: 16vw;
font-weight: 600;
line-height: .8;
}
header p{
max-width: 35em;
}
article{
max-width: 35em;
margin: 3rem 0;
padding: 1rem;
border-radius: .5rem;
color: #050542;
background-color: #66e5bf;
}
h2{
color: #050542;
margin: 1rem 0;
font-size: 2rem;
font-weight: 600;
}
li{
margin-bottom: 0.2rem;
}
article a{
color: #050542;
}
article a:hover{
background-color:#050542;
color: #fff;
}
</style>
</head>
<body>
<main>
<header>
<h1>Opleidings­commissie FDND</h1>
<p>Elke opleiding heeft een Opleidingscommissie (OC) die de kwaliteit van de opleiding bewaakt. De OC bestaat uit studenten en docenten (50/50) en is officieel een medezeggenschapsorgaan.</p>
<p>Lees hier <a href="https://www.hva.nl/praktisch/algemeen/faculteiten/fmr/opleidingscommissies/opleidingscommissies-fmr.html
">meer over de opleidingscommissie</a> op de website van de HvA.</p>
</header>
<article>
<h2>Contact en leden OC FDND</h2>
<p>De opleidingscommissie van FDND bestaat uit de leden:</p>
<ol>
<li><a href="mailto:[email protected]">Stefan van der Kort</a> (student) - Voorzitter</li>
<li><a href="mailto:[email protected]">Berat Zekaj</a> (docent) - Secretaris</li>
<li>Koop Reynders (docent)</li>
<li>Zoë Penner (student)</li>
</ol>
<p>De voorzitter en secretaris zijn te mailen voor vragen, maar ook makkelijk bereikbaar op Teams.</p>
<h2>Jaarverslagen</h2>
<ul>
<li><a href="download/Jaarverslag-2122-FDND.pdf">Download Jaarverslag 2021-2022</a></li>
<li><a href="download/Jaarverslag-2223-FDND.pdf">Download Jaarverslag 2022-2023</a></li>
</ul>
</article>
</main>
</body>
</html>