-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (59 loc) · 2.55 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Persönliche Website von jonathan Westphal">
<title>Persönliche Website</title>
<link rel="stylesheet" href="main.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="container">
<h1>Willkommen auf meiner Website</h1>
<nav>
<ul>
<li><a href="#about">Über mich</a></li>
<li><a href="#projects">Projekte</a></li>
<li><a href="#contact">Kontakt</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section id="about" class="section">
<div class="container">
<h2>Über mich</h2>
<p>Hallo, mein Name ist Jonathan Westphal, aktuell gehe ich noch in die Schule aufs Bismarck Gymnasium in Karlsruhe</p>
</div>
</section>
<section id="projects" class="section">
<div class="container">
<h2>Projekte</h2>
<div class="project-grid">
<div class="project-card">
<h3><a href="https://www.cansat.de/">CanSat Wettbewerb</a></h3>
<p>Im Jahr 2024 habe ich erfolgreich im Team <a href="https://silvasatellit.github.io/website/">SilvaSatellit</a> teilgenommen und den 2. Platz gewonnen</p>
</div>
<div class="project-card">
<h3><a href="https://www.jugend-forscht.de/">Jugend Forscht</a></h3>
<p>Ich arbeite gerade noch weiter an meinem Jugend Forscht Projekt in der Kategorie Technik, weitere Informationen in Kürze.</p>
</div>
</div>
</div>
</section>
<section id="contact" class="section">
<div class="container">
<h2>Kontakt</h2>
<p>Haben Sie Fragen oder möchten Sie mich kontaktieren? Schreiben Sie mir gerne eine E-Mail an: <a href="mailto:[email protected]">[email protected]</a>.</p>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2024 Jonathan Westphal. Alle Rechte vorbehalten. Ich übernehme keine Haftung für weiterführende Links.</p>
</div>
</footer>
</body>
</html>