-
Notifications
You must be signed in to change notification settings - Fork 0
/
brussels.html
80 lines (66 loc) · 3.68 KB
/
brussels.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
<!-- <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Feast and Wonder</title>
<link rel="stylesheet" href="styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header>
<div class="skip-to-main">
<a href="#main">Skip to main content</a>
</div>
<nav class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="seoul.html">Seoul</a></li>
<li><a href="paris.html">Paris</a></li>
<li><a href="brussels.html">Brussels</a></li>
<li><a href="visuals.html">Visuals</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<nav class="breadcrumbs">
<ul>
<li><a href="index.html">Home</a></li>
<li>Brussels</li>
</ul>
</nav>
</header>
<main id="main">
<section class="grid-second">
<h1 class="city-name">Brussels</h1>
<div class="flexbox-container">
<div class="video-container">
<video width="1280" height="720" src="images/chocolate.mp4" controls></video>
<article class="video-transcript" aria-labelledby="video-transcript">
<h2 id="video-transcript">At the chocolate shop</h2>
<p>This short video shows a rotating pile of filled chocolates in a local chocolate shop -known as a chocolaterie.
Shaped in the form of seashells, made from a mix of white and dark chocolate, and filled with praline -a nut and sugar paste- these
chocolates are emblematic of Belgian chocolate.
</p>
</article>
</div>
<div class="image-container">
<img src="images/waffles.jpg" width="1920" height="1173" alt="Freshly made waffles in the shape of a heart pictured with a bowl of flour, two eggs and a whisk.">
<img src="images/christmas-cookies.jpg" width="1920" height="1146" alt="Star shaped spiced cinnamon christmas cookies surrounded by pine cones, whole walnuts in their shell, and cinnamon sticks.">
<img src="images/chocolate.jpg" width="1920" height="1275" alt=" A close up picture of small differently shaped chocolates displayed in rows ; a combination of both filled and solid in white and dark chocolate.">
<img src="images/bread.jpg" width="1920" height="1286" alt=" A close up picture of small bread buns -known in belgium as pistolet- coated with flour.">
</div>
</div>
</section>
</main>
<footer>
<h3>Want to see more?</h3>
<hr>
<ul class="socials">
<li><a href="http://www.example.org"><img src="images/icons8-instagram-96.png" width="96" height="96" alt="Instagram icon"></a></li>
<li><a href="http://www.example.org"><img src="images/icons8-facebook-96.png" width="96" height="96" alt="Facebook icon"></a></li>
<li><a href="http://www.example.org"><img src="images/icons8-pinterest-96.png" width="96" height="96" alt="Pinterest icon"></a></li>
<li class="attribution"> <a href="https://icons8.com/icon/84884/instagram">Instagram</a>,<a href="https://icons8.com/icon/118487/facebook">Facebook</a>,<a href="https://icons8.com/icon/87072/pinterest">Pinterest</a>icons by<a href="https://icons8.com">Icons8</a></li>
</ul>
</footer>
</body>
</html>
-->