Newer
Older
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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Join Tutor</title>
<link rel="stylesheet" type="text/css" href="style.css">
<style>
.main-content {
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
</style>
</head>
<body>
<nav class="navbar">
<div class="logo"><a href="Homepage.html">LOGO</a></div>
<h1> Join Group </h1>
<a href="#" class="account-btn">Account</a>
</nav>
<main class="main-content">
<div class="box">
<a href="Tutor1.html">Tutor 1:<br> Max Mustermann</a>
</div>
<div class="box">
<a href="Tutor1.html">Tutor 2: <br> Maximillian Musterknabe</a>
</div>
<div class="box">
<a href="Tutor1.html">Tutor 3: <br> Monica Musterfrau</a>
</div>
</main>
<script>
</script>
</body>
</html>