-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
118 lines (118 loc) · 4.21 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
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<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="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<title>Wild edibles</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="background-img">
<div class="background">
<ul class="menu">
<li class="menu-item">Home</li>
<li class="menu-item">Herbarium</li>
<li class="menu-item">Workshops</li>
<li class="menu-item">Team</li>
<li class="menu-item">Contact Us</li>
</ul>
<h1>Wild edible weeds</h1>
<h2>eat what you step on</h2>
<p>
Are you stranded in the wilderness and your last cup of greek yoghurt
finished 2 days ago? <br />
Or maybe you are just sooo bored of the supermarket flavours and want
to try something new? Wild edible weeds is the way to go!<br />
<a
href="https://www.facebook.com/gatadamata.porto"
target="_blank"
title="Gata da Mata"
class="join-us-link"
><strong>Join our journey</strong></a
>
through the marvellous world of
<span class="text-highlight">edible weeds</span>,
<span class="text-highlight">seaweeds</span>, bubbly
<span class="text-highlight">fermentations</span> and more.
</p>
<h3>Top edible weeds:</h3>
<div class="wild-edibles">
<a
href="https://weborbi.com/gatamata/2021/10/24/wild-edible-nettle/"
target="_blank"
>
<img
class="wild-edible-img"
src="https://s3.amazonaws.com/shecodesio-production/uploads/files/000/044/269/original/nettle.jpg?1661203963"
alt="Nettles"
title="Nettle"
width="200"
/>
</a>
<a
href="https://weborbi.com/gatamata/2021/10/17/wild-edible-garden-nasturtium-indian-cress/"
target="_blank"
>
<img
class="wild-edible-img"
src="https://s3.amazonaws.com/shecodesio-production/uploads/files/000/044/268/original/nasturtium.jpg?1661203952"
alt="Nasturtium flowers"
title="Nasturtium"
width="200"
/></a>
<a
href="https://weborbi.com/gatamata/2022/03/20/wild-edible-chickweed/"
target="_blank"
>
<img
class="wild-edible-img"
src="https://s3.amazonaws.com/shecodesio-production/uploads/files/000/044/267/original/chickweed.jpg?1661203942"
alt="Chickweed"
title="Chickweed"
width="200"
/></a>
<a
href="https://weborbi.com/gatamata/2022/08/22/wild-edible-borage/"
target="_blank"
>
<img
class="wild-edible-img"
src="https://s3.amazonaws.com/shecodesio-production/uploads/files/000/044/265/original/borage.jpg?1661203922"
alt="Borage"
title="Borage"
width="200"
/></a>
</div>
<div class="warning">
<em>Be responsible, improper identification may kill</em>
💀
</div>
<hr />
<div class="subscribe-footer">
<div class="subscribe-left">
<div class="subscribe-title">Subscribe to our newsletter</div>
<div class="subscribe-text">Learn more about wild goodies</div>
</div>
<div class="subscribe-right">
<button class="subscribe-button">Count me in!</button>
</div>
</div>
<hr />
<div class="coder">
Coded by
<a
class="coder-link"
href="https://www.shecodes.io/graduates/49682-aija-repsa"
target="_blank"
alt="Aija SheCodes profile"
>Aija Repsa</a
>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>