-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
73 lines (67 loc) · 3.53 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<title>Contact</title>
</head>
<body>
<header class="header">
<h1 class="hidden">SafeFam Fixer</h1>
<nav class="menu">
<div class="menu__wrapper">
<a href="index.html"><img src="assets/img/logo.png" alt="logo"></a>
<ul class="menu__items">
<li class="menu__item"><a class="menu__item__link" href="index.html">Home</a></li>
<li class="menu__item"><a class="menu__item__link" href="services.html">Services</a></li>
<li class="menu__item"><a class="menu__item__link contact__link" href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<section class="header__box">
<h2 class="hidden">header safefam</h2>
<article class="header__box__intro">
<h3 class="header__box__title">Contacteer ons</h3>
<p class="header__box__text">
Nog vragen die niet beantwoord zijn in de andere pagina's? Dan ben je hier aan het juiste adres.
</p>
</article>
<img src="assets/img/contact-header.png" alt="header ">
</section>
</header>
<main class="container">
<section class="form__container">
<h2 class="hidden">form</h2>
<form class="form" action="contact.html" method="GET">
<label class="label form__naam">Voor- en achternaam *
<input class="form__text__eenrij" type="text" name="naam" placeholder="Voornaam achternaam" required>
</label>
<label class="label form__email">Email *
<input class="form__text__eenrij" type="email" name="e-mail" placeholder="[email protected]" required>
</label>
<label class="label form__comment">Commentaar
<textarea name="comment" maxlength="250" rows="5" placeholder="Zijn er nog problemen ..."></textarea>
</label>
<div class="flex__child">
<input type="checkbox" name="voorwaardes" id="6" required>
<label class="form__accept" for="6">Accepteer je de <span class="form__accept--link">voorwaardes</span>.</label>
</div>
<input class="button submit" type="submit" value="Indienen">
</form>
</section>
</main>
<footer class="footer">
<section class="footer__box">
<h2 class="hidden">footer</h2>
<a class="footer__box__icon" href="https://www.facebook.com/"><img class="footer__box__img" src="assets/img/social-media/facebook.png" alt="facebook"></a>
<a class="footer__box__icon" href="https://www.instagram.com/conor_v_527/"><img class="footer__box__img--groter" src="assets/img/social-media/instagram.png" alt="instagram"></a>
<a class="footer__box__icon" href="https://twitter.com/"><img class="footer__box__img" src="assets/img/social-media/twitter.png" alt="twitter"></a>
</section>
<p class="footer__box__text">© 2019 SafeFam - All Rights Reserved</p>
</footer>
<script src="js/script.js"></script>
</body>
</html>