forked from Ada-C22/group-fansite
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
92 lines (83 loc) · 4 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
<!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">
<title>For the Love of Coffee</title>
<link href="styles/style.css" rel="stylesheet">
<link href="styles/index.css" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="images/logo.gif">
</head>
<body>
<header>
<nav>
<a href="index.html" class="active">Home</a>
<a href="pages/facts.html">Fun Facts</a>
<a href="pages/gallery.html">Gallery</a>
<a href="pages/about_us.html">About Us</a>
</nav>
</header>
<main>
<h1> ☕ For the Love of Coffee ☕
</h1>
<section>
<img id="logo" src="./images/logo.gif" alt="logo">
<h2> A dedicated place for coffee appreciation and its cultural significance.</h2>
</section>
<div class="grid-container">
<section id="description1">
<h3> What <em>is</em> coffee? </h3>
<p>
Ahhhh, coffee. Coffee is an unofficial sponsor of weekdays.
It can turn the groggiest person into an alert and active one!
</p>
<p>
Okay, in all seriousness, coffee in our everyday sense is a beverage brewed from roasted coffee beans, and is prepared in several different ways
all across the world. Some people prefer it plain, while others prefer to add milk, cream, sugar, spices, and several other additions.
However, the National Coffee Association defines coffee as the berries harvested from a tropical plant.
</p>
<p>
Visit our Fun Facts page to learn more neat details about cofee. You'll also
find a neat collection of our favorite coffeehouses in our Gallery page!
To learn more about the people behind this fansite, dive into our About Us page.
</p>
<img src="./images/coffee_beans.png" alt="Coffee beans clipart">
</section>
<section id="description2">
<h4>Origins</h4>
<p>
The when and how coffee was discovered is largely unknown. Several stories and legends
exist to explain its origins. One thing that is for certain, is all coffee grown around the globe can be traced
back to modern-day Ethiopia.
</p>
<p>
There is a legend dated back to the third century AD, telling us how a goat shepherd noticed the change in behavior of his
goats after they consumed these "energizing" berries. Over time, during the 15th century, knowledge of the energizing "berries" spread from
Ethiopia to the Arabian peninsula, Yemen to be exact, where coffee was first cultivated and domesticated. Here, the coffee trade
and human caffeination took off.
</p>
<p>
Speaking of caffeination, the energizing properties of coffee are due to a special organic molecule named <em>caffeine</em>.
As a stimulant, caffeine acts on the Central Nervous System which affects a person's cognitive function.
</p>
<img src="./images/Ethiopia_map.png" alt="Ethiopia Map clipart">
</section>
<section id="description3">
<h5>The Caffea plant</h5>
<p>
Most of us may recognize a roasted coffee bean, but we may be unfamiliar with the actual plant itself!
Coffee comes from the berries of <em>Caffea</em> plants, an evergreen shrub with
green leaves, white flowers, and fleshy, red fruit where the seeds (coffee beans) are located.
</p>
<img id="size-ctrl" src="./images/caffea_image.png" alt="Caffea Plant clipart">
</section>
</div>
</main>
<footer>
<small>
© Coffee Lovers by ADA C22 2024
</small>
</footer>
</body>
</html>