-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (74 loc) · 3.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recap</title>
<meta name="description" content="This is the Recap for CSS">
<meta name="author" content="Katharina Beck">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/normalize.css">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Oswald&family=Roboto&display=swap" rel="stylesheet">
</head>
<body>
<header class="header">
<div class="header-nav-button-wrapper">
<button class="header-button">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-list"
viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5z" />
</svg>
</button>
</div>
<h1>CODING BOOTCAMPS EUROPE</h1>
</header>
<main>
<section class="section-1">
<h2>STUDENTS</h2>
<p class="fellow">Your fellow students</p>
<div class="search">
<label for="suche"><i class="bi bi-search"></i></label>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-search"
viewBox="0 0 16 16">
<path
d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z" />
</svg>
<input type="search" id="suche" placeholder="Search for students names">
</div>
</section>
<div class="selector">
<select name="month" id="month">
<option value="November Class 2021">November Class 2021</option>
<option value="Dezember Class 2021">Dezember Class 2021</option>
</select>
<select name="month" id="month">
<option value="Full-time">Full-time</option>
<option value="Part-time">Part-time</option>
</select>
</div>
<section class="section-2">
<h2>Full-time November Class of 2021</h2>
<nav>
<p class="border-box1">Dimitry Kolesnikov<br>
<a href="https://github.com/dimi87">github.com/Dimi87</a>
</p>
<p class="brder-box2">Justus Siebert<br>
<a href="https://github.com/justussiebert">github.com/justussiebert</a>
</p>
<p class="border-box3">Manuel Hohenadl<br>
<a href="https://github.com/manoo89">github.com/Manoo89</a>
</p>
<p class="border-box4">Ovidiu Goanta<br>
<a href="https://github.com/goanta-ovidiu">github.com/Goanta-Ovidiu</a>
</p>
<p class="border-box5">Patricia Prager<br>
<a href="https://github.com/patprager">github.com/patprager</a>
</p>
</nav>
</section>
</main>
</header>
</body>
</html>