-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContact.html
More file actions
52 lines (50 loc) · 1.95 KB
/
Contact.html
File metadata and controls
52 lines (50 loc) · 1.95 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EZE'S webshop</title>
<link rel="stylesheet" href="stylesheet.css">
</head>
<body class="body-about">
<nav>
<div class="logo"><h1><a href="index.html">EZE's shoes</a></h1></div> <div class="nav-items">
<a href="/index.html">Home</a>
<a href="/Aboutme.html">About us</a>
<a href="/Contact.html">Contact</a>
</div>
</nav>
<div class="container">
<div class="header22">
<h2>Contact Us</h2>
<p>Message for feedback</p>
</div>
<div class="row22">
<div class="column">
<img src="background.image.contact.page.webp" style="width:100%">
</div>
<div class="column">
<form action="https://api.web3forms.com/submit" method="POST">
<input type="hidden" name="access_key" value="cff3978c-f483-4c68-847d-ebe39224fb6f">
<label for="fname">achternaam</label>
<input type="text" id="fname" name="firstname" placeholder="uw voornaam..">
<label for="lname">Voornaam</label>
<input type="text" id="lname" name="lastname" placeholder="uw achternaam..">
<label for="country">land</label>
<select id="country" name="country">
<option value="australia">Australië</option>
<option value="canada">Canada</option>
<option value="usa">VS</option>
<option value="usa">Nederland</option>
<option value="usa">Belgie</option>
<option value="usa">Frankrijk</option>
</select>
<label for="subject">Subject</label>
<textarea id="subject" name="subject" placeholder="Write something.." style="height:170px" required></textarea>
<input type="submit" value="Submit" style="transition:0.3s; border-radius: 20px;">
</form>
</div>
</div>
</div>
</body>
</html>