forked from fdnd-task/fix-the-flow-interactive-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
51 lines (45 loc) · 1.72 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
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/main.css" />
<link rel="stylesheet" href="styles/contact.css"/>
<!-- Google icons -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" />
<title>Contact</title>
</head>
<body>
<header>
<h1>Contact</h1>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="aanbod.html">Initiatieven</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main>
<p>Heeft u een idee voor een leuk initiatief vul dan dit contact formulier in.
We zullen zo snel mogelijk contact met u opnemen.
</p>
<form onsubmit="return false" id="contactform">
<label for="firstName"> Voornaam: </label>
<input type="text" placeholder="Voer uw voornaam in" id="firstName" required/>
<label for="lastName"> Achternaam: </label>
<input type="text" placeholder="Voer uw achternaam in" id="lastName" required/>
<label for="email"> E-mail: </label>
<input type="text" placeholder="Voer uw emailadres in" id="email" required/>
<label for="phonenumber"> Telefoonnummer: </label>
<input type="number" placeholder="+31 600000000" id="phonenumber"/>
<label for="initiatief"> Wat is uw initiatief: </label>
<textarea id="initiatief" placeholder="Vermeld uw initiatief. Beschrijf hierbij de tijd/datum en activiteit" required></textarea>
<button onclick="sendContact();"> Verstuur </button>
</form>
</main>
<footer>
<p>Contact informatie</p>
</footer>
</body>
</html>