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
69 lines (55 loc) · 4.66 KB
/
Copy pathindex.html
File metadata and controls
69 lines (55 loc) · 4.66 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
63
64
65
66
67
68
69
re<!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 class="header"><h1>Coffee Blog</h1></header>
<div class="grid-container">
<div class="item1"><h2>The History of Coffee</h2></div>
<div class="item2"><img style="margin-bottom: 20px;"src="/images/coffeepicture5.jpeg">
<p style=color:black;>Coffee grown worldwide can trace its heritage back centuries to the ancient coffee forests on the Ethiopian plateau. There, legend says the goat herder Kaldi first discovered the potential of these beloved beans.
The story goes that
Kaldi discovered coffee after he noticed that after eating the berries from a certain tree, his goats became so energetic that they did not want to sleep at night.
Kaldi reported his findings to the abbot of the local monastery, who made a drink with the berries and found that it kept him alert through the long hours of evening prayer. The abbot shared his discovery with the other monks at the monastery, and knowledge of the energizing berries began to spread.
As word moved east and coffee reached the Arabian peninsula, it began a journey which would bring these beans across the globe</p></div>
<div class="item3"><pre><button style="background-color:black;color:white;width:100%;padding:30px;font-size:xx-large"><a href="https://en.wikipedia.org/wiki/Coffee_ceremony_of_Ethiopia_and_Eritrea">Read More...</a></button></div>
</div>
<div class="grid-container">
<div class="item1"><h2>Coffee Ceremony</h2></div>
<div class="item2"><img style="margin-bottom: 20px;"src="/images/coffeepicture3.jpeg">
<p style=color:black;>Coffee ceremony of Ethiopia and Eritrea is a core cultural custom in Ethiopia and Eritrea. There is a routine of serving coffee daily, mainly for the purpose of getting together with relatives, neighbors, or other visitors. If coffee is politely declined, then tea will most likely be served.
Loose grass is spread on the floor where the coffee ceremony is held, often decorated with small yellow flowers. Composite flowers are sometimes used, especially around the celebration of Meskel (an Orthodox Holiday celebrated by Eritreans and Ethiopians).
Brewing
The ceremony is typically performed by the woman of the household and is considered an honor.[1] The coffee is brewed by first roasting the green coffee beans over an open flame in a pan.[2][3] This is followed by the grinding of the beans, traditionally in a wooden mortar and pestle.[3] The coffee grounds are then put into a special vessel which contains boiling water and will be left on an open flame for a couple of minutes until it is well mixed with the hot water.[2] After grinding, the coffee is put through a sieve several times.[3] The boiling pot (jebena) is usually made of pottery and has a spherical base, a neck and pouring spout, and a handle where the neck connects with the base.[3] The jebena also has a straw lid.[3]
</p></div>
<div class="item3"><pre><button style="background-color:black;color:white;width:100%;padding:30px;font-size:xx-large"><a href="https://en.wikipedia.org/wiki/Coffee_ceremony_of_Ethiopia_and_Eritrea">Read More...</a></button></div>
</div>
<div class="grid-container">
<div class="item1"><h2>The Best Ethiopian Coffee Beans
</h2></div>
<div class="item2">
<ul>
<li><h3>Yirgacheffe Coffee.</h3><img style="margin-bottom: 20px;"src="/images/yirgachefee.jpg"></li>
<li><h3>Organic Sidamo Coffee.</h3><img style="margin-bottom: 20px;"src="/images/sidamo.jpg"></li>
<li><h3>Harar Coffee</h3><img style="margin-bottom: 20px;"src="/images/harar.jpg"></li>
</ul></div>
<div class="item3"><pre><button style="background-color:black;color:white;width:100%;padding:30px;font-size:xx-large"><a href="https://www.ncausa.org/about-coffee/history-of-coffee#:~:text=An%20Ethiopian%20Legend,potential%20of%20these%20beloved%20beans.">Read More...</a></button></div>
</div>
<footer><h1>Melese@coffeeblog.com</h1></footer>
<!-- Add your HTML markup here -->
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
</body>
</html>