-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkontakt.html
57 lines (51 loc) · 2.22 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Kontakt - Schreinerei Meier</title>
<link rel="stylesheet" href="css/styleneu.css">
<meta name="description" content="">
<meta property="og:title" content="">
<meta property="og:type" content="">
<meta property="og:url" content="">
<meta property="og:image" content="">
<meta property="og:image:alt" content="">
<link rel="manifest" href="site.webmanifest">
<meta name="theme-color" content="#fafafa">
</head>
<body>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="leistungen.html">Unsere Leistungen</a></li>
<li><a href="geschichte.html">Unternehmensgeschichte</a></li>
<li class="active-right"><a href="kontakt.html">Kontakt</a></li>
</ul>
<br>
<div class="contact-data">
<h2>Direkter Kontakt</h2>
<h4>Mail</h4>
<p><a href="mailto:[email protected]" class="contact-a">[email protected]</a></p>
<h4>Telefon</h4>
<p><a href="tel:0413112345678" class="contact-a">04131-12345678</a></p>
<h4>Standort</h4>
<p>Theodor-Heuss-Straße 1</p>
<p>21337 Lüneburg</p>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d742.3022406151007!2d10.429727371404221!3d53.24511917455114!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47b1de785eec49cd%3A0x948221b530eaacd5!2sGymnasium%20Johanneum%2C%20Theodor-Heuss-Stra%C3%9Fe%201%2C%2021337%20L%C3%BCneburg!5e0!3m2!1sde!2sde!4v1724228164557!5m2!1sde!2sde" width="600" height="450" style="border: 2px black solid;" allowfullscreen="false" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<div class="container-contact">
<h2>Kontaktformular</h2>
<form action="/submit-form" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">E-Mail:</label>
<input type="email" id="email" name="email" required>
<label for="subject">Betreff:</label>
<input type="text" id="subject" name="subject" required>
<label for="message">Nachricht:</label>
<textarea id="message" name="message" rows="5" required></textarea>
<button type="submit">Absenden</button>
</form>
</div>
</body>
</html>