-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproductpage.html
575 lines (512 loc) · 26.2 KB
/
productpage.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/generalstyles.css">
<link rel="stylesheet" href="styles/productstyles.css">
<link rel="icon" type="image/svg+xml" href="images/favicon.png">
<title>Bol.com scampage</title>
</head>
<body>
<header>
<a href="./index.html" aria-label="naar de homepage van bol.com">
<img src="images/nav/woordmerk.svg" alt="">
</a>
<button><img src="./images/nav/hamburgermenu.svg" alt="hamburgermenu"></button>
<nav>
<button aria-label = "sluit menu">
<svg version="1.1" viewBox="0 0 14 14" aria-hidden="true" class="svg-inline--bi bi-cross bi-lg" data-test="icon-cross" focusable="false"><path fill-rule="evenodd" d="M7 7.378l3.363 3.363a.496.496 0 00.703-.004c.19-.19.197-.51.004-.703L7.707 6.67l3.363-3.363a.496.496 0 00-.004-.703.502.502 0 00-.703-.004L7 5.964 3.637 2.6a.496.496 0 00-.703.004.502.502 0 00-.004.703L6.293 6.67 2.93 10.034a.496.496 0 00.004.703c.19.19.51.197.703.004L7 7.378z"></path>
</svg>
</button>
<ul inert>
<li>
<a href="#">
Boeken
<img src="./images/categrieboeken.jpg" alt="Categorie boeken">
</a>
</li>
<li>
<a href="#">
Muziek, Film & Games
<img src="./images/categoriefilms.jpg" alt="Categorie films">
</a>
</li>
<li>
<a href="#">
Computer & Elektronica
<img src="./images/categorieelektronica.jpg" alt="Categorie elektronica">
</a>
</li>
<li>
<a href="#">
Speelgoed, Hobby & Feest
<img src="./images/categoriespeelgoed.jpg" alt="Categorie speelgoed">
</a>
</li>
<li>
<a href="#">
Zwanger, Baby & Peuter
<img src="./images/categoriebaby.jpg" alt="Categorie baby">
</a>
</li>
<li>
<a href="#">
Mooi & Gezond
<img src="./images/categoriebeauty.jpg" alt="Categorie beauty">
</a>
</li>
<li>
<a href="#">
Kleding, schoenen & accesoires
<img src="./images/categoriekleding.jpg" alt="Categorie kleding">
</a>
</li>
<li>
<a href="#">
Sport, Outdoor & accesoires
<img src="./images/categoriesport.jpg" alt="Categorie sport">
</a>
</li>
<li>
<a href="#">
Kantoor & School
<img src="./images/categoriekantoorschool.jpg" alt="Categorie kantoor en school">
</a>
</li>
<li>
<a href="#">
Eten & Drinken
<img src="./images/categorieetendrinken.jpg" alt="Categorie eten en drinken">
</a>
</li>
<li>
<a href="#">
Wonen, Koken & Huishouden
<img src="./images/categoriekoken.jpg" alt="Categorie koken">
</a>
</li>
<li>
<a href="#">
Kerst, Klussen, Tuin & Dier
<img src="./images/categoriekerstklussentuindier.jpg" alt="Categorie klussen">
</a>
</li>
<li>
<a href="#">
Auto & Motor
<img src="./images/categorieauto.jpg" alt="Categorie auto">
</a>
</li>
</ul>
</nav>
<nav>
<ul>
<li>
<a href="#">
<svg version="1.1" viewBox="0 0 24 24" aria-hidden="true" focusable="false"><path class="icon" d="M12 24c-3 0-7.1-.7-9-2.5-.6-.6-1-1.4-1-2.2 0-3.8 2.6-7.2 6.3-8.6C6.9 9.6 6 7.9 6 6c0-3.3 2.7-6 6-6s6 2.7 6 6c0 1.9-.9 3.6-2.3 4.7 3.6 1.4 6.3 4.8 6.3 8.6 0 3.4-6 4.7-10 4.7zm0-12c-4.3 0-8 3.3-8 7.3 0 .1 0 .4.4.7 1.1 1.1 4.3 2 7.6 2 4.5 0 8-1.5 8-2.7 0-4-3.7-7.3-8-7.3zm0-10C9.8 2 8 3.8 8 6s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4z"></path></svg>
</a>
</li>
<li>
<a href="#">
<svg version="1.1" viewBox="0 0 24 24" aria-hidden="true" focusable="false"><path class="icon" d="M12 23.2l-.6-.4C3.5 17.2 0 12.9 0 9c0-3.5 2-6.7 4.9-7.9C7.3.2 9.8.7 12 2.6 14.2.7 16.7.2 19.1 1.1 22 2.3 24 5.5 24 9c0 3.9-3.5 8.2-11.4 13.8l-.6.4zM7.3 2.7c-.6 0-1.1.1-1.6.3C3.6 3.8 2 6.4 2 9c0 3 3.3 6.9 10 11.8C18.7 15.9 22 12 22 9c0-2.6-1.6-5.2-3.7-6-1.8-.7-3.8-.2-5.6 1.7l-.7.7-.7-.7c-1.3-1.3-2.7-2-4-2z"></path></svg>
</a>
</li>
<li>
<a href="#">
<svg version="1.1" viewBox="0 0 24 24" aria-hidden="true" focusable="false"><path class="icon" d="M23.9 6.5c0-.8-.7-1.5-1.5-1.5H5.8l-1-4H1c-.6 0-1 .4-1 1s.4 1 1 1h2.2L4 6.2l2.9 11.6c-.5.6-.9 1.4-.9 2.2 0 1.7 1.3 3 3 3s3-1.3 3-3c0-.4-.1-.7-.2-1h4.4c-.1.3-.2.6-.2 1 0 1.7 1.3 3 3 3s3-1.3 3-3c0-.9-.4-1.6-.9-2.2l2.7-11c0-.1.1-.2.1-.3zM10 20c0 .6-.4 1-1 1s-1-.4-1-1 .4-1 1-1 1 .4 1 1zm9 1c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1zm.2-4H8.8L6.3 7h15.4l-2.5 10z"></path></svg>
</a>
</li>
</ul>
</nav>
<form>
<label class="visually-hidden" for="search">Zoeken</label>
<input id="search" type="search" placeholder="Waar ben je naar op zoek?">
<button type="submit">
<svg version="1.1" viewBox="0 0 24 24" aria-hidden="true" focusable="false"><path class="icon" d="M23 24c-.3 0-.5-.1-.7-.3l-6-6C14.6 19.2 12.4 20 10 20 4.5 20 0 15.5 0 10S4.5 0 10 0s10 4.5 10 10c0 2.4-.8 4.6-2.3 6.3l6 6c.2.2.3.5.3.7s-.1.5-.3.7-.4.3-.7.3zM10 2c-4.4 0-8 3.6-8 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8z"></path></svg>
</button>
</form>
<a href="./index.html">Terug naar homepagina</a>
</header>
<main>
<h1>Google Chromecast met Google TV - HD - Wit</h1>
<section>
<h2 class="visually-hidden">Product in het kort</h2>
<ul>
<li>
<a href="#">Merk:Google</a>
</li>
<li>
<a href="#">Serie:Google chromecast</a>
</li>
<li>
<a href="#">Reviews 4.7/5 (151 reviews)</a>
<!-- <span></span> -->
<div class="five-pointed-star"></div>
<div class="five-pointed-star"></div>
<div class="five-pointed-star"></div>
<div class="five-pointed-star"></div>
<div class="five-pointed-star"></div>
</li>
<li>
<a href="#">delen</a>
</li>
</ul>
</section>
<section>
<h2 class="visually-hidden">Productfoto's</h2>
<figure>
<img src="./images/productafbeelding1.jpg" alt="Chromecast">
</figure>
<ul>
<li><img src="./images/productafbeelding1.jpg" alt="Chromecast"></li>
<li><img src="./images/productafbeelding2.jpg" alt="Video van chromecast"></li>
<li><img src="./images/productafbeelding3.jpg" alt="Beeldresolutie 1080p, HDR ondersteuning, google tv ondersteuning en bediening met afstandsbediening"></li>
<li><img src="./images/productafbeelding4.jpg" alt="Chromecast voor de mandalorian"></li>
<li><img src="./images/productafbeelding5.jpg" alt="Chromecast inhoud"></li>
</ul>
<button>
<svg version="1.1" viewBox="0 0 24 24" aria-hidden="true" class="svg-inline--bi bi-heart-vi bi-lg bi-hide" data-test="icon-heart-vi" focusable="false"><path d="M12 23.2l-.6-.4C3.5 17.2 0 12.9 0 9c0-3.5 2-6.7 4.9-7.9C7.3.2 9.8.7 12 2.6 14.2.7 16.7.2 19.1 1.1 22 2.3 24 5.5 24 9c0 3.9-3.5 8.2-11.4 13.8l-.6.4zM7.3 2.7c-.6 0-1.1.1-1.6.3C3.6 3.8 2 6.4 2 9c0 3 3.3 6.9 10 11.8C18.7 15.9 22 12 22 9c0-2.6-1.6-5.2-3.7-6-1.8-.7-3.8-.2-5.6 1.7l-.7.7-.7-.7c-1.3-1.3-2.7-2-4-2z"></path>
</svg>
</button>
</section>
<section>
<ul>
<li>
<button>
In winkelwagen
<svg version="1.1" viewBox="0 0 24 24" aria-hidden="true" focusable="false"><path class="icon" d="M23.9 6.5c0-.8-.7-1.5-1.5-1.5H5.8l-1-4H1c-.6 0-1 .4-1 1s.4 1 1 1h2.2L4 6.2l2.9 11.6c-.5.6-.9 1.4-.9 2.2 0 1.7 1.3 3 3 3s3-1.3 3-3c0-.4-.1-.7-.2-1h4.4c-.1.3-.2.6-.2 1 0 1.7 1.3 3 3 3s3-1.3 3-3c0-.9-.4-1.6-.9-2.2l2.7-11c0-.1.1-.2.1-.3zM10 20c0 .6-.4 1-1 1s-1-.4-1-1 .4-1 1-1 1 .4 1 1zm9 1c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1zm.2-4H8.8L6.3 7h15.4l-2.5 10z"></path></svg>
</button>
<button>
<svg version="1.1" viewBox="0 0 24 24" aria-hidden="true" class="svg-inline--bi bi-heart-vi bi-lg bi-hide" data-test="icon-heart-vi" focusable="false"><path d="M12 23.2l-.6-.4C3.5 17.2 0 12.9 0 9c0-3.5 2-6.7 4.9-7.9C7.3.2 9.8.7 12 2.6 14.2.7 16.7.2 19.1 1.1 22 2.3 24 5.5 24 9c0 3.9-3.5 8.2-11.4 13.8l-.6.4zM7.3 2.7c-.6 0-1.1.1-1.6.3C3.6 3.8 2 6.4 2 9c0 3 3.3 6.9 10 11.8C18.7 15.9 22 12 22 9c0-2.6-1.6-5.2-3.7-6-1.8-.7-3.8-.2-5.6 1.7l-.7.7-.7-.7c-1.3-1.3-2.7-2-4-2z"></path>
</svg>
</button>
</li>
<li>39,99</li>
<li>Op voorraad</li>
<li>Select</li>
<li>Voor 23:59 besteld, morgen in huis </li>
<li>Verkoop door bol.com</li>
<li>Inclusief verzendkosten, verstuurd door bol.com</li>
<li>Ophalen bij een bol.com afhaalpunt mogelijk</li>
<li>30 dagen bedenktijd en gratis retourneren</li>
<li>Dag en nacht klantenservice</li>
</ul>
<h2>Bezorgopties</h2>
<ul>
<li><em>Vandaag</em> nog in huis (bestel ma-vr voor 12:00, bezorging tussen 17:00 en 22:00)</li>
<li>Doordeweeks ook <em>’s avonds</em> in huis</li>
<li>Ook <em>zondag </em>in huis (bestel voor za 23:59)</li>
</ul>
<a href="#"> > Bekijk alle bezorgopties</a>
</section>
<section>
<h2>Productspecificaties</h2>
<button aria-label="Klik hier voor alle productspecificaties">
<span></span>
<span></span>
</button>
<section>
<button aria-label="productspecificaties sluiten">
<img src="./images/productafbeelding1.jpg" alt="">
Google ChromeCast
</button>
<h2>Productspecificaties</h2>
<table>
<thead>
<tr>
<th colspan="2">Productinformatie</th>
</tr>
</thead>
<tbody>
<tr>
<td>Merk</td>
<td>Google</td>
</tr>
</tbody>
</table>
<table>
<thead>
<tr>
<th colspan="2">Opname en opslag</th>
</tr>
</thead>
<tbody>
<tr>
<td>Opslagcapiciteit</td>
<td>0GB</td>
</tr>
</tbody>
</table>
<table>
<thead>
<tr>
<th colspan="2">Aansluitingen</th>
</tr>
</thead>
<tbody>
<tr>
<td>Ethernet verbinding</td>
<td>0</td>
</tr>
<tr>
<td>Aantal USB 2.0 poorten</td>
<td>0</td>
</tr>
<tr>
<td>Aantal USB 3.0 poorten (USB 3.1 Gen 1 Type A)</td>
<td>1</td>
</tr>
</tbody>
</table>
<table>
<thead>
<tr>
<th colspan="2">Garantie</th>
</tr>
</thead>
<tbody>
<tr>
<td>Fabrieksgarantie termijn</td>
<td>2 jaar</td>
</tr>
<tr>
<td>Reparatie type</td>
<td>Carry-in</td>
</tr>
<tr>
<td>Uitzonderingen fabrieksgarantie</td>
<td>Schade</td>
</tr>
</tbody>
</table>
</section>
</section>
<section>
<h2>Anderen bekeken ook</h2>
<nav>
<ul>
<li>
<a href="./productpage.html">
<h3>Dreamhouse Soft Terry - Badjas - Katoen badstof - S/M - Grijs - Ultra zacht en warm</h3>
<!-- overflow hidden op zetten zodat niet de hele titel in beeld is -->
<ul>
<li aria-label="prijs">€22,99</li>
<li>Adviesprijs €28,95</li>
<li aria-label = "reviews 5 sterren">
<div class="five-pointed-star"></div>
<div class="five-pointed-star"></div>
<div class="five-pointed-star"></div>
<div class="five-pointed-star"></div>
<div class="five-pointed-star"></div>
</li>
</ul>
<img src="./images/trendingbadjas.jpg" alt="badjas">
<button>
<svg version="1.1" viewBox="0 0 24 24" aria-hidden="true" class="svg-inline--bi bi-heart-vi bi-lg bi-hide" data-test="icon-heart-vi" focusable="false"><path d="M12 23.2l-.6-.4C3.5 17.2 0 12.9 0 9c0-3.5 2-6.7 4.9-7.9C7.3.2 9.8.7 12 2.6 14.2.7 16.7.2 19.1 1.1 22 2.3 24 5.5 24 9c0 3.9-3.5 8.2-11.4 13.8l-.6.4zM7.3 2.7c-.6 0-1.1.1-1.6.3C3.6 3.8 2 6.4 2 9c0 3 3.3 6.9 10 11.8C18.7 15.9 22 12 22 9c0-2.6-1.6-5.2-3.7-6-1.8-.7-3.8-.2-5.6 1.7l-.7.7-.7-.7c-1.3-1.3-2.7-2-4-2z"></path>
</svg>
</button>
</a>
</li>
<li>
<a href="#">
<h3>Fleece Panty Zwart - Gevoerde Panty - Fleece Legging - Thermo Panty - Tiktok Panty - Maat S/M</h3>
<ul>
<li aria-label="prijs">€29,99</li>
<li>Prijstip</li>
<li aria-label = "reviews 5 sterren">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</li>
</ul>
<img src="./images/trendingfleecepanty.jpg" alt="Fleecepanty">
<button>
<svg version="1.1" viewBox="0 0 24 24" aria-hidden="true" class="svg-inline--bi bi-heart-vi bi-lg bi-hide" data-test="icon-heart-vi" focusable="false"><path d="M12 23.2l-.6-.4C3.5 17.2 0 12.9 0 9c0-3.5 2-6.7 4.9-7.9C7.3.2 9.8.7 12 2.6 14.2.7 16.7.2 19.1 1.1 22 2.3 24 5.5 24 9c0 3.9-3.5 8.2-11.4 13.8l-.6.4zM7.3 2.7c-.6 0-1.1.1-1.6.3C3.6 3.8 2 6.4 2 9c0 3 3.3 6.9 10 11.8C18.7 15.9 22 12 22 9c0-2.6-1.6-5.2-3.7-6-1.8-.7-3.8-.2-5.6 1.7l-.7.7-.7-.7c-1.3-1.3-2.7-2-4-2z"></path>
</svg>
</button>
</a>
</li>
<li>
<a href="#">
<h3>Matchbox Action Drivers Politiebureau - Speelgoedvoertuig</h3>
<ul>
<li aria-label="prijs">€23,79</li>
<li>Je bespaart 15%</li>
<li aria-label = "reviews 5 sterren">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</li>
</ul>
<img src="./images/trendingmatchbox.jpg" alt="matchbox">
<button>
<svg version="1.1" viewBox="0 0 24 24" aria-hidden="true" class="svg-inline--bi bi-heart-vi bi-lg bi-hide" data-test="icon-heart-vi" focusable="false"><path d="M12 23.2l-.6-.4C3.5 17.2 0 12.9 0 9c0-3.5 2-6.7 4.9-7.9C7.3.2 9.8.7 12 2.6 14.2.7 16.7.2 19.1 1.1 22 2.3 24 5.5 24 9c0 3.9-3.5 8.2-11.4 13.8l-.6.4zM7.3 2.7c-.6 0-1.1.1-1.6.3C3.6 3.8 2 6.4 2 9c0 3 3.3 6.9 10 11.8C18.7 15.9 22 12 22 9c0-2.6-1.6-5.2-3.7-6-1.8-.7-3.8-.2-5.6 1.7l-.7.7-.7-.7c-1.3-1.3-2.7-2-4-2z"></path>
</svg>
</button>
</a>
</li>
<li>
<a href="#">
<h3>Playmobil Wiltopia - Dierenreddingsquad 71011</h3>
<ul>
<li aria-label="prijs">€24,99</li>
<li>Op voorraad</li>
<li aria-label = "reviews 5 sterren">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</li>
</ul>
<img src="./images/trendingplaymobil.jpg" alt="playmobil">
<button>
<svg version="1.1" viewBox="0 0 24 24" aria-hidden="true" class="svg-inline--bi bi-heart-vi bi-lg bi-hide" data-test="icon-heart-vi" focusable="false"><path d="M12 23.2l-.6-.4C3.5 17.2 0 12.9 0 9c0-3.5 2-6.7 4.9-7.9C7.3.2 9.8.7 12 2.6 14.2.7 16.7.2 19.1 1.1 22 2.3 24 5.5 24 9c0 3.9-3.5 8.2-11.4 13.8l-.6.4zM7.3 2.7c-.6 0-1.1.1-1.6.3C3.6 3.8 2 6.4 2 9c0 3 3.3 6.9 10 11.8C18.7 15.9 22 12 22 9c0-2.6-1.6-5.2-3.7-6-1.8-.7-3.8-.2-5.6 1.7l-.7.7-.7-.7c-1.3-1.3-2.7-2-4-2z"></path>
</svg>
</button>
</a>
</li>
<li>
<a href="#">
<h3>Inventum SZ300 - Stofzuigerzak</h3>
<ul>
<li aria-label="prijs">€7,-</li>
<li>Je bespaart €1,75,- </li>
<li aria-label = "reviews 5 sterren">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</li>
</ul>
<img src="./images/trendingstofzuigerzakken.jpg" alt="Stofzuigerzakken">
<button>
<svg version="1.1" viewBox="0 0 24 24" aria-hidden="true" class="svg-inline--bi bi-heart-vi bi-lg bi-hide" data-test="icon-heart-vi" focusable="false"><path d="M12 23.2l-.6-.4C3.5 17.2 0 12.9 0 9c0-3.5 2-6.7 4.9-7.9C7.3.2 9.8.7 12 2.6 14.2.7 16.7.2 19.1 1.1 22 2.3 24 5.5 24 9c0 3.9-3.5 8.2-11.4 13.8l-.6.4zM7.3 2.7c-.6 0-1.1.1-1.6.3C3.6 3.8 2 6.4 2 9c0 3 3.3 6.9 10 11.8C18.7 15.9 22 12 22 9c0-2.6-1.6-5.2-3.7-6-1.8-.7-3.8-.2-5.6 1.7l-.7.7-.7-.7c-1.3-1.3-2.7-2-4-2z"></path>
</svg>
</button>
</a>
</li>
<li>
<a href="#">
<h3>Nordevik® Tochtstrip 12 meter - Zelfklevend - Energiebesparing - Voor Ramen en Deuren - E-profiel Tochtstopper - Tochtband - Tochtwering - Hoogwaardig foam - Woning verduurzamen - 4 x 9mm</h3>
<ul>
<li aria-label="prijs">€13,99</li>
<li>Je bespaart 13%</li>
<li aria-label = "reviews 5 sterren">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</li>
</ul>
<img src="./images/trendingtochtstrip.jpg" alt="tochtstrip">
<button>
<svg version="1.1" viewBox="0 0 24 24" aria-hidden="true" class="svg-inline--bi bi-heart-vi bi-lg bi-hide" data-test="icon-heart-vi" focusable="false"><path d="M12 23.2l-.6-.4C3.5 17.2 0 12.9 0 9c0-3.5 2-6.7 4.9-7.9C7.3.2 9.8.7 12 2.6 14.2.7 16.7.2 19.1 1.1 22 2.3 24 5.5 24 9c0 3.9-3.5 8.2-11.4 13.8l-.6.4zM7.3 2.7c-.6 0-1.1.1-1.6.3C3.6 3.8 2 6.4 2 9c0 3 3.3 6.9 10 11.8C18.7 15.9 22 12 22 9c0-2.6-1.6-5.2-3.7-6-1.8-.7-3.8-.2-5.6 1.7l-.7.7-.7-.7c-1.3-1.3-2.7-2-4-2z"></path>
</svg>
</button>
</a>
</li>
</ul>
</nav>
</section>
<section>
<h2>Plus-en minpunten</h2>
<ul>
<li>Deze Google Chromecast is ook met de afstandsbediening te gebruiken</li>
<li>Google TV organiseert al jouw inhoud, met al je streamingdiensten, op één scherm</li>
<li>De 2K HD kwaliteit is een perfecte middenweg tussen full HD en 4K</li>
<li>Je kunt alleen via wifi verbinden (geen LAN-poort)</li>
</ul>
</section>
<section>
<h2>Productomschrijving</h2>
<p>De Chromecast met Google TV (2K HD) streamt het entertainment naar jouw voorkeur in tot wel 1080p HDR en werkt met gesproken bediening. Krijg persoonlijke aanbevelingen op basis van je abonnementen
en streamgeschiedenis, allemaal op één plek. Je hoeft dus niet meer te schakelen tussen apps om wat leuks te vinden. Gebruik de afstandsbediening om films en series te zoeken met je stem. Deze Chromecast
met Google TV werkt zowel met een iPhone als met een Android toestel. De installatie is uiterst gemakkelijk en het enige wat je nodig hebt is een smartphone, een wifi-verbinding, een televisie met een
HDMI-poort en een beschikbaar stopcontact. That's it.</p>
</section>
</main>
<footer>
<section>
<h2>Ontdek alles bij bol.com</h2>
<ul>
<li>Boeken</li>
<li>Muziek, Film & Games</li>
<li>Sport, Outdoor & Reizen</li>
<li>Computer & Elektronica</li>
</ul>
</section>
<section>
<h2>Service & contact</h2>
<section>
<h3>Snel regelen in je account</h3>
<p>Volg je bestelling, betaal facturen of retourneer een artikel.</p>
<svg version="1.1" viewBox="0 0 48 48" aria-hidden="true" class="svg-inline--bi bi-line-graphic-account bi-3x" data-test="icon-line-graphic-account" focusable="false"><path d="M23.8 48c-6.5 0-14.6-1.5-18.1-5C4.6 41.9 4 40.6 4 39.3c0-8.3 6.2-15.5 14.5-17.7-3.7-1.9-6.2-5.7-6.2-10.2C12.4 5.1 17.5 0 23.8 0s11.5 5.1 11.5 11.5c0 4.4-2.5 8.2-6.2 10.2 8.3 2.2 14.5 9.4 14.5 17.7 0 5.5-10.2 8.6-19.8 8.6zm0-25.1C14.2 22.9 6 30.4 6 39.3c0 .8.4 1.6 1.1 2.3 2.6 2.6 9.4 4.4 16.6 4.4h.1c8.6 0 17.8-2.7 17.8-6.7 0-8.9-8.1-16.4-17.8-16.4zm0-20.9c-5.2 0-9.5 4.2-9.5 9.5s4.2 9.5 9.5 9.5c5.2 0 9.5-4.2 9.5-9.5S29 2 23.8 2z"></path></svg>
</section>
<section>
<h3>Heb je ons nodig?</h3>
<p>We helpen je graag. Onze klantenservice is dag en nacht open.</p>
<svg version="1.1" viewBox="0 0 24 24" aria-hidden="true" class="svg-inline--bi bi-line-graphic-customercare bi-3x" data-test="icon-line-graphic-customercare" focusable="false"><path d="M22.52 14A9.07 9.07 0 106 7.23a8.43 8.43 0 00-3.51 2.13 8.6 8.6 0 00-1 10.92l-.71 2.93 2.93-.73a8.58 8.58 0 0010.93-1 8.62 8.62 0 002.12-3.58 8.5 8.5 0 003.12-1.27l2.74.69a.69.69 0 00.44-.15.4.4 0 00.15-.44zm-8.62 6.8a7.57 7.57 0 01-9.65.89l-.34-.25-1.81.39.44-1.76-.25-.34a7.58 7.58 0 1111.61 1.08zm6-5.19a.38.38 0 00-.4.05 7.74 7.74 0 01-2.5 1.17 8.55 8.55 0 00-2.37-7.47A8.67 8.67 0 007.12 7 7.81 7.81 0 019.2 3.33a8.16 8.16 0 0111.46 0 8.1 8.1 0 01.93 10.29.5.5 0 00-.05.39l.46 2.15zm-5.9-.28a5.2 5.2 0 01-5.29 5.14 5.24 5.24 0 01-5.29-5.14.47.47 0 01.49-.49.47.47 0 01.49.49 4.25 4.25 0 004.31 4.16A4.25 4.25 0 0013 15.33a.5.5 0 011 0z"></path></svg>
</section>
<ul>
<li>klantenservice</li>
<li>Over bol.com</li>
<li>Zakendoen met bol.com</li>
</ul>
</section>
<section>
<h2>Wil je ons volgen?</h2>
<ul>
<li>
<svg version="1.1" viewBox="0 0 24 24" aria-hidden="true" class="svg-inline--bi bi-facebook bi-lg" data-test="icon-facebook" focusable="false"><path fill-rule="evenodd" d="M23 0H1a1 1 0 00-1 1v22a1 1 0 001 1h11.75v-9h-3v-3.75h3v-3c0-3.1 1.963-4.625 4.728-4.625 1.324 0 2.463.099 2.794.142v3.24l-1.917.001c-1.504 0-1.855.715-1.855 1.763v2.479h3.75L19.5 15h-3l.06 9H23a1 1 0 001-1V1a1 1 0 00-1-1"></path></svg>
</li>
<li>
<svg version="1.1" viewBox="0 0 24 24" aria-hidden="true" class="svg-inline--bi bi-twitter bi-lg" data-test="icon-twitter" focusable="false"><path fill-rule="evenodd" d="M24 4.324a9.803 9.803 0 01-2.828.781 4.966 4.966 0 002.165-2.743 9.834 9.834 0 01-3.127 1.203A4.903 4.903 0 0016.616 2c-2.72 0-4.923 2.22-4.923 4.957 0 .388.043.767.127 1.13-4.093-.207-7.72-2.18-10.149-5.18a4.963 4.963 0 00-.667 2.492c0 1.72.87 3.238 2.19 4.126a4.874 4.874 0 01-2.23-.62v.063a4.951 4.951 0 003.95 4.86 4.902 4.902 0 01-2.224.086 4.933 4.933 0 004.6 3.442 9.837 9.837 0 01-6.115 2.122c-.398 0-.79-.023-1.175-.068a13.872 13.872 0 007.548 2.226c9.057 0 14.01-7.554 14.01-14.104 0-.215-.005-.429-.015-.642A10.024 10.024 0 0024 4.324"></path></svg>
</li>
<li>
<svg version="1.1" viewBox="0 0 24 24" aria-hidden="true" class="svg-inline--bi bi-pinterest bi-lg" data-test="icon-pinterest" focusable="false"><path fill-rule="evenodd" d="M12 0C5.372 0 0 5.372 0 12c0 5.084 3.163 9.426 7.627 11.174-.105-.95-.2-2.406.042-3.442.217-.936 1.407-5.965 1.407-5.965s-.36-.718-.36-1.781c0-1.669.968-2.915 2.172-2.915 1.024 0 1.518.769 1.518 1.69 0 1.03-.655 2.57-.993 3.996-.283 1.195.598 2.169 1.777 2.169 2.133 0 3.772-2.25 3.772-5.495 0-2.873-2.065-4.883-5.013-4.883-3.414 0-5.418 2.562-5.418 5.208 0 1.031.397 2.138.893 2.739.098.119.112.222.083.344-.091.38-.293 1.194-.333 1.361-.053.219-.174.266-.402.16-1.499-.698-2.436-2.888-2.436-4.649 0-3.785 2.75-7.261 7.93-7.261 4.162 0 7.397 2.966 7.397 6.93 0 4.136-2.607 7.464-6.227 7.464-1.216 0-2.358-.632-2.75-1.378l-.748 2.853c-.27 1.042-1.002 2.348-1.492 3.146A11.99 11.99 0 0012 24c6.628 0 12-5.373 12-12 0-6.628-5.372-12-12-12"></path></svg>
</li>
<li>
<svg version="1.1" viewBox="0 0 500 500" aria-hidden="true" class="svg-inline--bi bi-instagram bi-lg" data-test="icon-instagram" focusable="false"><path d="M250 45.05c66.75 0 74.66.25 101 1.45 24.38 1.11 37.61 5.19 46.42 8.61a77.52 77.52 0 0128.75 18.7 77.52 77.52 0 0118.7 28.75c3.42 8.81 7.5 22 8.61 46.42 1.2 26.36 1.45 34.27 1.45 101s-.25 74.66-1.45 101c-1.11 24.38-5.19 37.61-8.61 46.42a82.76 82.76 0 01-47.45 47.45c-8.81 3.42-22 7.5-46.42 8.61-26.36 1.2-34.26 1.45-101 1.45s-74.66-.25-101-1.45c-24.38-1.11-37.61-5.19-46.42-8.61a77.52 77.52 0 01-28.75-18.7 77.52 77.52 0 01-18.7-28.75c-3.42-8.81-7.5-22-8.61-46.42-1.2-26.36-1.45-34.27-1.45-101s.25-74.66 1.45-101c1.11-24.38 5.19-37.61 8.61-46.42a77.52 77.52 0 0118.7-28.75 77.52 77.52 0 0128.75-18.7c8.81-3.42 22-7.5 46.42-8.61 26.36-1.2 34.27-1.45 101-1.45m0-45c-67.9 0-76.41.29-103.07 1.5s-44.79 5.39-60.69 11.57A122.56 122.56 0 0042 42a122.56 122.56 0 00-28.88 44.24c-6.18 15.9-10.4 34.08-11.62 60.69S0 182.1 0 250s.29 76.41 1.5 103.07 5.44 44.79 11.62 60.69A122.56 122.56 0 0042 458a122.56 122.56 0 0044.28 28.84c15.9 6.18 34.08 10.4 60.69 11.62S182.1 500 250 500s76.41-.29 103.07-1.5 44.79-5.44 60.69-11.62a127.89 127.89 0 0073.12-73.12c6.18-15.9 10.4-34.08 11.62-60.69S500 317.9 500 250s-.29-76.41-1.5-103.07-5.44-44.79-11.62-60.69A122.56 122.56 0 00458 42a122.56 122.56 0 00-44.28-28.84c-15.9-6.18-34.08-10.4-60.69-11.62S317.9 0 250 0zm0 121.62A128.38 128.38 0 10378.38 250 128.38 128.38 0 00250 121.62zm0 211.71A83.33 83.33 0 11333.33 250 83.33 83.33 0 01250 333.33zM383.45 86.55a30 30 0 1030 30 30 30 0 00-30-30z"></path></svg>
</li>
<li>
<svg version="1.1" viewBox="0 0 24 24" aria-hidden="true" class="svg-inline--bi bi-youtube bi-lg" data-test="icon-youtube" focusable="false"><path fill-rule="evenodd" d="M9.522 15.2V8.662l6.484 3.28-6.484 3.256zM23.76 7.53s-.235-1.603-.954-2.31c-.913-.926-1.936-.93-2.405-.984C17.043 4 12.005 4 12.005 4h-.01s-5.038 0-8.396.236c-.47.053-1.492.058-2.406.985C.474 5.927.24 7.53.24 7.53S0 9.413 0 11.295v1.765c0 1.884.24 3.766.24 3.766s.234 1.603.953 2.309c.914.927 2.113.898 2.647.995 1.92.178 8.16.234 8.16.234s5.043-.008 8.401-.243c.47-.055 1.492-.06 2.405-.986.72-.706.954-2.31.954-2.31s.24-1.881.24-3.765v-1.765c0-1.882-.24-3.765-.24-3.765z"></path></svg>
</li>
<li>
<svg version="1.1" viewBox="0 0 24 24" aria-hidden="true" class="svg-inline--bi bi-linkedin bi-lg" data-test="icon-linkedin" focusable="false"><path fill-rule="evenodd" d="M20.452 20.45h-3.56v-5.57c0-1.328-.022-3.036-1.85-3.036-1.851 0-2.134 1.447-2.134 2.942v5.664H9.352V8.997h3.413v1.566h.049c.475-.9 1.636-1.85 3.367-1.85 3.605 0 4.27 2.371 4.27 5.456v6.281zM5.339 7.433a2.063 2.063 0 110-4.13 2.065 2.065 0 010 4.13zM7.12 20.45H3.558V8.997H7.12V20.45zM23 0H1a1 1 0 00-1 1v22a1 1 0 001 1h22a1 1 0 001-1V1a1 1 0 00-1-1z"></path></svg>
</li>
</ul>
<p><a href="#">Meld je aan </a>voor onze nieuwsbrief</p>
</section>
<section>
<ul>
<li>
<img src="./images/bolwoordmerk.png" alt="Woordmerk Bol, de winkel van ons allemaal">
</li>
<li>
<p>Geldt voor aankopen bij <a href="#">Thuiswinkel-leden</a></p>
<img src="./images/thuiswinkelwaarborg.svg" alt="Thuiswinkel waarborg">
</li>
<li>Algemene voorwaarden</li>
<li>Privacy</li>
<li>Cookies</li>
<li>1999-2022 bol.com bv</li>
</ul>
<p>
*De voordelen van bol.com gelden niet voor de gehele assortiment. <a href="#">Bekijk de voorwaarden</a>
Alle prijzen zijn inclusief <abbr title="">BTW</abbr> en andere heffingen en exclusief eventuele <a href="#">verzendkosten</a> en <a href="#">servicekosten</a>
</p>
</section>
</footer>
<script defer src="./scripts/productscript.js"></script>
<script defer src="./scripts/generalscript.js"></script>
</body>
</html>