-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
39 lines (38 loc) · 1.48 KB
/
contact.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Swift contact</title>
<link rel="stylesheet" type="text/css" href="CSS/contact.css">
<link rel="icon" href="Images/Rijkslogo.png">
</head>
<body>
<header>
<a href="index.html"><<Home</a>
</header>
<main>
<h1 id="ch1">Stel uw vraag</h1>
<h3 id="ch3">We nemen zo spoedig mogelijk contact met u op.<br>
Dit duurt gemiddeld 5 werkdagen.</h3>
<div id="sds">
<form id="contactform" onsubmit="return false">
<p>Naam</p>
<input type="text" id="naam" name="naam" class="input" placeholder="Voornaam Achternaam">
<p>E-mail</p>
<input type="text" id="email" name="email" class="input" placeholder="[email protected]">
<p>Omschrijving</p>
<textarea type="text" id="omschrijf" name="omschrijf" class="input" placeholder="Geef een duidelijke omschrijving"></textarea>
<button id="verzenden" onclick="sendContact();"><b>Verzenden</b></button>
</form>
<div id="fill">
<img src="Images/Qimg.png" alt="Bedachtzame assistant" id="imgq">
<!--<div id="block"></div>
<img src="ALA-VA - 2.png" id="fillimg">
<div id="qblock"><p>?</p></div>-->
</div>
</div>
</main>
</body>
</html>