-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkontakt.html
40 lines (36 loc) · 1.41 KB
/
kontakt.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
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css" />
<title>Übersicht</title>
</head>
<body>
<!-- Platzhalter für den Header -->
<div id="header-placeholder"></div>
<div class="container">
<h1>Kontaktieren Sie uns!</h1>
<p>Wir sind immer für einen Spaß zu haben!</p>
<form id="contact-form" class="contact-form">
<div class="form-group">
<label for="name">Ihr Name</label>
<input type="text" id="name" name="name" required placeholder="Ihr Name hier...">
</div>
<div class="form-group">
<label for="email">Ihre E-Mail</label>
<input type="email" id="email" name="email" required placeholder="Ihre E-Mail hier...">
</div>
<div class="form-group">
<label for="message">Ihre Nachricht</label>
<textarea id="message" name="message" required placeholder="Schreiben Sie uns hier eine Nachricht..."></textarea>
</div>
<knopf type="submit" id="submit-btn">Absenden</knopf>
</form>
<div id="form-response"></div>
</div>
<!-- Platzhalter für den Footer -->
<div id="footer-placeholder"></div>
<!-- Externes JavaScript einbinden -->
<script src="script.js"></script>
</body>
</html>