forked from CodeYourFuture/HTML-CSS-Coursework-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (52 loc) · 2.53 KB
/
index.html
File metadata and controls
62 lines (52 loc) · 2.53 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>My Blog</title>
<link
href="//fonts.googleapis.com/css?family=Roboto:400,500,300"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<header>
<nav>
<a href="#homepage">Home</a>
<a href="#about">Main Plates</a>
</nav>
<h1>Cape Verdean Traditional Plates</h1>
<p>Like everything else, the Cape Verdean food showcases Portuguese and West African influences.</p>
</header>
<main>
<section id="about">
<section class="section-cachupa">
<h2>Cachupa Rica</h2>
<p>A staple of Cape Verdean culture, cachupa is more than just a national dish. Proudly prepared by locals for the most various occasions, this hearty stew can easily be defined as the Cape Verdean comfort food par excellence.
</p>
<img src="https://paulinaontheroad.com/wp-content/uploads/2018/11/viajar-santo-antao-mindelo-cabo-verde-cape-verde-expresiones-kriol-criollo-creole-what-to-do-sao-vicente-hiking-food-restaurant-marina-boat-party-music-shopping-outdoor-trekking-2.jpg.webp" alt="">
</section>
<section class="section-buzio">
<h2>Buzio</h2>
<p>If you like fish and seafood more than meat, then buzio is definitely a dish to try in Cape Verde. This slow-cooked food is typically made with mussels (although other shellfish can also be used), and soy sauce.
Not as hearty as the Cape Verdean cachupa, buzio is a better choice for a lighter lunch or dinner, as well as for a festive meal.</p>
<img src="https://paulinaontheroad.com/wp-content/uploads/2020/03/buzio-stew-cabo-verde-1536x1413.jpg.webp" alt="">
</section>
<section class="section-moreia">
<h2>Moreia</h2>
<p>Morreia (fried moray eel) is one of those dishes that stand as proof of the strong Portuguese influences the Cape Verdean culture had over the decades.
A staple of the Portuguese cuisine, morreia is one of the most popular dishes in Cape Verde too.</p>
<img src="https://paulinaontheroad.com/wp-content/uploads/2020/03/Fried-Fish.jpg.webp" alt="">
</section>
</section>
</main>
<footer>
</footer>
</body>
</html>