-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
41 lines (38 loc) · 1.17 KB
/
contact.html
File metadata and controls
41 lines (38 loc) · 1.17 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
38
39
40
41
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Contact</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" style="min-height:40svh">
<div>
<h1>Contact</h1>
<p class="lead">Feel free to reach out!</p>
</div>
</header>
<section class="section">
<form class="form" action="mailto:e778324@hsu-hh.de" method="post" enctype="text/plain">
<input name="name" placeholder="Dein Name">
<input name="email" type="email" placeholder="E-Mail">
<textarea name="message" rows="6" placeholder="Nachricht"></textarea>
<button class="btn" type="submit">Senden</button>
</form>
</section>
<footer>© 2025 MB • Contact</footer>
<script src="script.js"></script>
</body>
</html>