-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (64 loc) · 2.32 KB
/
index.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Ieder kind is anders</title>
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<style>
img {
position: relative;
width: 100%;
}
.img-container {
position: relative;
margin-left: auto;
margin-right: auto;
max-width: 757px;
padding-left: 20px;
padding-right: 20px;
margin-top: 200px;
}
body {
background: #FFFFFF;
font-size: 18px;
}
</style>
<link rel="shortcut icon" type="image/ico" href="images/favicon.ico" />
<link rel="shortcut icon" type="image/png" href="images/favicon-32x32.png" sizes="32x32" />
<link rel="shortcut icon" type="image/png" href="images/favicon-16x16.png" sizes="16x16" />
<link rel="shortcut icon" type="image/png" href="images/favicon-96x96.png" sizes="96x96" />
</head>
<body>
<div class="img-container">
<img src="images/logo.png" alt="Ieder kind is anders" />
<div class="row">
<div class="col s12">
<h4>Ieder Kind Is Anders is nu live! Klik <a href="https://iederkindisanders.nl" rel="noopener noreferrer">hier</a> om door te gaan naar de website.</h4>
</div>
</div>
<form name="contact" method="POST" data-netlify="true" action="/ingeschreven">
<div class="row">
<div class="col s12">
<p>Wil je op de hoogte gehouden worden over de start en de voortgang van het project? Schrijf je hieronder in voor de nieuwsbrief:</p>
</div>
</div>
<div class="row">
<div class="input-field col s12 m6">
<input id="email" name="email" type="email" class="validate">
<label for="email">E-mailadres</label>
<span class="helper-text">Lees <a href="/privacybeleid" target="_blank">ons privacybeleid</a>.</span>
</div>
<div class="input-field col s12 m6">
<button class="btn waves-effect waves-light" type="submit">Inschrijven
<i class="material-icons right">send</i>
</button>
</div>
</div>
</form>
</div>
</body>
</html>