-
Notifications
You must be signed in to change notification settings - Fork 0
/
cognitive_impairments.html
200 lines (176 loc) · 5.77 KB
/
cognitive_impairments.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<script src="./jquery-ui/external/jquery/jquery.js"></script>
<script src="./jquery-ui/jquery-ui.min.js"></script>
<link rel="stylesheet" href="./jquery-ui/jquery-ui.min.css">
<script>
$( function() {
$( ".menu" ).menu();
} );
</script>
<style>
body {
padding: 100px;
}
main {
width: 50%;
}
.ui-menu {
display: inline-block;
float: left;
width: 150px;
}
.form {
margin-bottom: 20px;
margin-top: 20px;
}
.menu {
display: block;
margin-bottom: 20px;
}
.menuitem {
border: solid 1px black;
display: inline-block;
margin-left: 0;
margin-right: 0;
padding-bottom: 5px;
padding-left: 5px;
padding-right: 5px;
padding-top: 5px;
text-decoration: underline;
}
input[type="checkbox"] {
display: inline-block;
margin-right: 10px;
}
</style>
</head>
<body>
<!--- Roles: https://www.w3.org/wiki/PF/XTech/HTML5/RoleAttribute -->
<!-- Menu Items, ARIA Role and Tab Index -->
<ul class="menu">
<li>
<div>Café Cortado</div>
<ul>
<li>
<div>Our Story</div>
<ul>
<li>
<div>History</div>
</li>
<li>
<div>Team</div>
<ul>
<li>
<div>Sophía Gonzalez</div>
</li>
<li>
<div>Brandon Peters</div>
</li>
<li>
<div>Anna Lee</div>
</li>
</ul>
</li>
<li>
<div>Photos</div>
</li>
</ul>
</li>
<li>
<div>Location</div>
</li>
<li>
<div>Hours</div>
</li>
</ul>
</li>
<li>
<div>Menu</div>
<ul>
<li>
<div>Breakfast</div>
</li>
<li>
<div>Lunch</div>
</li>
<li>
<div>Desserts</div>
</li>
</ul>
</li>
</ul>
<ul class="menu">
<li>
<div>Types of Coffee</div>
<ul>
<li>
<div>Arabica</div>
<ul>
<li>
<div>Brutte</div>
</li>
<li>
<div>Colombian</div>
<ul>
<li>
<div>History</div>
</li>
<li>
<div>Quality</div>
</li>
</ul>
</li>
<li>
<div>Ethiopian</div>
</li>
</ul>
</li>
<li>
<div>Robustica</div>
</li>
</ul>
</li>
<li>
<div>Coffee Roasting</div>
<ul>
<li>
<div>Process</div>
</li>
<li>
<div>Equipment</div>
</li>
<li>
<div>Home Roasting</div>
</li>
</ul>
</li>
<li>
<div>Brewing</div>
<ul>
<li>
<div>Pour Over</div>
</li>
<li>
<div>French Press</div>
</li>
<li>
<div>Espresso</div>
</li>
</ul>
</li>
</ul>
<!-- ARIA Role and Tab Index -->
<main>
<h1>Our service is the Bees Knees!</h1>
<img src="coffee.jpg" />
<h2>Colombian Coffee</h2>
<p>Colombian coffee is often regarded as some of the highest quality coffee in the world. Colombia has traditionally grown arabica beans and its unique geography makes it perfectly suited for producing a delicious, high quality brew. No one knows exactly when coffee arrived in what is now Colombia. Some think the bean came with Jesuit priests in the seventeenth century, but the first shipment of coffee overseas wasn’t until 1835, when 2500 pounds of coffee headed from Colombia to the United States. In pre and post-independence times, most export agriculture was done on large-scale latifundos controlled by elites. By 1860, coffee had emerged as the dominant export crop, and shortly thereafter, tariffs on coffee exports had become the main source of government revenues. Land reform in the 1930’s did some to relieve the inequality in land ownership, but by 1980, 10% of farms, including ranches, managed 80% of arable land. This chronic inequality has not been as prevalent in the coffee sector, and the nation has shown a strong trend towards small fincas in the last 30 years. </p>
<h2>Indian Filter</h2>
<p>Indian filter coffee uses an apparatus typically made of stainless steel. There are two cylindrical compartments, one sitting on top of the other. The upper compartment has tiny holes (less than ~0.5 mm). And then there is the pierced pressing disc with a stem handle, and a covering lid. The finely ground coffee with 15–20% chicory is placed in the upper compartment, the pierced pressing disc is used to cover the ground coffee, and hot water is poured on top of this disk. Unlike the regular drip brew, the coffee does not start pouring down immediately. This is because of the chicory, which holds on to the water longer than just the ground coffee beans can. This causes the beverage to be much more potent than the American drip variety. 2–3 teaspoonfuls of this decoction is added to a 100–150 ml milk. Sugar is then sometimes added by individual preference.</p>
<p> <a href="#">Purchase beans</a></p>
</main>
</body>
</html>