-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (35 loc) · 1.01 KB
/
index.html
File metadata and controls
37 lines (35 loc) · 1.01 KB
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
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Home</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="nav">
<div class="wrap">
<div class="brand"><a href="index.html">ES23 • Tülp</a></div>
<div class="burger">☰</div>
<div class="menu">
<a href="about.html">About</a>
<a href="projects.html">Projects</a>
<a href="contact.html">Contact</a>
</div>
</div>
</nav>
<header class="hero">
<div>
<h1>Soldier • Student</h1>
<p class="lead">LiLaLu Platzhalter ist das nu</p>
<div class="cta">
<a class="btn" href="about.html">About</a>
<a class="btn secondary" href="projects.html">Projects</a>
<a class="btn secondary" href="contact.html">Contact</a>
</div>
</div>
</header>
<footer>© 2025 MB • Built for GitHub Pages</footer>
<script src="script.js"></script>
</body>
</html>