-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact.html
54 lines (44 loc) · 1.5 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<h1>Contact Ons</h1>
<section>
<p>We horen graag van je! Neem contact met ons op via onderstaande informatie of vul het contactformulier in.</p>
<h2>Adres</h2>
<p>Bedrijf Naam<br>
Straatnaam 123<br>
1234 AB, Stad<br>
Nederland</p>
<h2>Email</h2>
<p><a href="mailto:info@bedrijfnaam.nl">info@bedrijfnaam.nl</a></p>
<h2>Telefoon</h2>
<p>+31 6 12345678</p>
<h2>Contactformulier</h2>
<form action="#" method="post">
<label for="name">Naam:</label><br>
<input type="text" id="name" name="name" required><br><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email" required><br><br>
<label for="message">Bericht:</label><br>
<textarea id="message" name="message" rows="4" required></textarea><br><br>
<button type="submit">Verstuur</button>
</form>
</section>
<footer>
<p>© 2024 Bedrijf Naam. Alle rechten voorbehouden.</p>
</footer>
</body>
</html>