-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
75 lines (60 loc) · 1.73 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
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- header met titel & zoeken -->
<header>
<form>
<fieldset>
<div>
<legend>Zoek een <span>leuk</span> verhaal</legend>
<label for="search">Zoeken</label>
<input type="search" id="zoekhet" placeholder="Zoek op woord of titel …">
<button type="submit">Zoek!</button>
</div>
</fieldset>
</form>
<button>
zoek een verhaal
</button>
<h1>99 verhalen voor op reis</h1>
</header>
<main>
<header>
<h2>Populaire verhalen</h2>
</header>
<figure>
<img src="https://koopreynders.github.io/frontendvoordesigners/img/verhalen/Haiku47S.png"
alt="">
<figcaption>47 - Haiku</figcaption>
</figure>
<figure>
<img src="https://koopreynders.github.io/frontendvoordesigners/img/verhalen/Kater31S.png"
alt="">
<figcaption>31 - Kater</figcaption>
</figure>
<figure>
<img src="https://koopreynders.github.io/frontendvoordesigners/img/verhalen/Schoorsteen12S.png"
alt="">
<figcaption>12 - Schoorsteen</figcaption>
</figure>
<figure>
<img src="https://koopreynders.github.io/frontendvoordesigners/img/verhalen/RegionaalDagblad60S.jpg"
alt="">
<figcaption>60 - Regionaal Dagblad</figcaption>
</figure>
<figure>
<img src="https://koopreynders.github.io/frontendvoordesigners/img/verhalen/Droom3S.jpg"
alt="">
<figcaption>3 - Droom</figcaption>
</figure>
<figure>
<img src="https://koopreynders.github.io/frontendvoordesigners/img/verhalen/Zombie89S.png"
alt="">
<figcaption>89 - Zombie</figcaption>
</figure>
</main>
</body>
<script src="script.js"></script>
</html>