-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (105 loc) · 3.76 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./style/main.css">
</head>
<body>
<header>
<div class="logo">
<img src="./src/svg/icon-field-gallery.svg" alt="logo">
<p>Logo</p>
</div>
<nav>
<a href="#">Link</a>
<a href="#">Link</a>
<a href="#">Link</a>
<a href="#">Link</a>
<a href="#">Link</a>
</nav>
</header>
<main>
<section class="hero">
<div class="hero-content">
<h1>Headline goes here</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, voluptatum.</p>
<div class="">
<button>Link</button>
<button>Link</button>
</div>
</div>
</section>
<section class="more">
<h2>Subheading</h2>
<div class="more-content">
<div class="more-item">
<img src="./src/img/valdemaras-januska-igaoYBHBDws-unsplash.jpg" alt="">
<h3>Item</h3>
<div class="">XXXXX</div>
<p>description</p>
<button>Link</button>
</div>
<div class="more-item">
<img src="./src/img/yannis-zaugg-NjhfsfsbJhw-unsplash.jpg" alt="">
<h3>Item</h3>
<div class="">XXXXX</div>
<p>description</p>
<button>Link</button>
</div>
<div class="more-item">
<img src="./src/img/ye-massa-6tO8GAxvUpo-unsplash.jpg" alt="">
<h3>Item</h3>
<div class="">XXXXX</div>
<p>description</p>
<button>Link</button>
</div>
</div>
</section>
<section class="form">
<h2>Form</h2>
<form action="">
<div class="">
<input type="text" placeholder="Voornaam">
<input type="text" placeholder="Achternaam">
</div>
<input type="email" placeholder="Email">
<div class="">
<input type="text" placeholder="Woonplaats">
<input type="date" placeholder="dd-mm-jjjj">
</div>
<input type="range" name="Onderwerp" id="" placeholder="Kies onderwerp van het bericht">
<div class="">
<textarea name="" id="" cols="30" rows="10" placeholder="Bericht"></textarea>
</div>
<div class="">
<input type="radio" name="Ja" id="">
<input type="radio" name="Nee" id="">
</div>
<input type="checkbox" name="akkoord" id="">
<div class="">
<button>Submit button</button>
</div>
</form>
</section>
</main>
<footer>
<div class="">
<img src="./src/svg/icon-field-gallery.svg" alt="" srcset="">
<p>Copyright 2023 Bedrijfsnaam</p>
<div class="">
<img src="./src/svg/icons8-instagram.svg" alt="">
<img src="./src/svg/icons8-facebook.svg" alt="">
<img src="./src/svg/icons8-snapchat-squared.svg" alt="">
</div>
</div>
<div class="">
<p>Privacyverklaring</p>
<p>Algemene voorwaarden</p>
<p>Cookiebeleid</p>
<p>contact</p>
</div>
</footer>
</body>
</html>