-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdrinks.html
More file actions
96 lines (95 loc) · 2.4 KB
/
drinks.html
File metadata and controls
96 lines (95 loc) · 2.4 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
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Coffee Drinks</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link href="styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<h1>All About Coffee</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="roasting.html">Roasting</a></li>
<li><a href="grinding.html">Grinding</a></li>
<li><a href="brewing.html">Brewing</a></li>
<li><a href="drinks.html">Drinks</a></li>
<li><a href="survey.html">Coffee Survey</a></li>
</ul>
</nav>
</header>
<h1>Coffee Drinks</h1>
<video width="640" height="360" controls poster="media/latte-poster.JPG">
<source src="media/latte-pour.mp4" type="video/mp4" />
<source src="media/latte-pour.webmhd.webm" type="video/webm" />
<source src="media/latte-pour.oggtheora.ogv" type="video/ogg" />
Your browser does not support video playback
</video>
<table>
<caption>Popular Coffee Drinks</caption>
<tr>
<th>Drink</th>
<th>Preparation</th>
<th>Temperature</th>
<th>Ingredients</th>
<th>Details</th>
</tr>
<tr>
<td>Cappuccino</td>
<td>Espresso</td>
<td>Hot</td>
<td>Equal amount of espresso and steamed milk</td>
<td>Pour the espresso through the milk and serve</td>
</tr>
<tr>
<td>Latte</td>
<td>Espresso</td>
<td>Hot</td>
<td>2/3 or more steamed milk and espresso</td>
<td>Pour the espresso through the milk and serve.</td>
</tr>
<tr>
<td>Macchiato</td>
<td>Espresso</td>
<td>Hot</td>
<td>Espresso with just a "mark" of steamed milk</td>
<td>Add milk to the expresso after pressing.</td>
</tr>
<tr>
<td>Iced Coffee</td>
<td>Drip or french press</td>
<td>Cold</td>
<td>Coffee poured over ice</td>
<td>Can be sweetened with sugar or creme.</td>
</tr>
<tr>
<td>Frappé</td>
<td>Strong instant coffee</td>
<td>Cold</td>
<td>Instant coffee, water and milk </td>
<td>Shake to create a foam, then pour over ice and serve. A specialty in Greece</td>
</tr>
<tr>
<td>Flat white</td>
<td>Espresso</td>
<td>Hot</td>
<td>1/3 espresso and 2/3 steamed milk</td>
<td>A specialty in Australia and New Zealand. The foam is often decorated with a motif.</td>
</tr>
</table>
<footer>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="roasting.html">Roasting</a></li>
<li><a href="grinding.html">Grinding</a></li>
<li><a href="brewing.html">Brewing</a></li>
<li><a href="drinks.html">Drinks</a></li>
<li><a href="survey.html">Coffee Survey</a></li>
</ul>
</nav>
</footer>
</body>
</html>