-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoffee.html
152 lines (136 loc) · 5.46 KB
/
coffee.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
<!DOCTYPE html>
<!--
Author: Keller Tree
Date: 11/14/2023
-->
<html lang="en">
<head>
<title>Our Coffee</title>
<meta charset="utf-8">
<link rel="stylesheet" href="styleSheets/main.css">
<link rel="stylesheet" href="styleSheets/coffee.css">
</head>
<body>
<header>
<img src="images/crownCoffeeLogo_white.png" alt="Crown Coffee Logo">
<h1>Our Coffee</h1>
<nav>
<a href="index.html">Home</a> •
<a href="coffee.html">Our Coffee</a> •
<a href="coffeeGuide.html">Coffee Guide</a> •
<a href="menu.html">Menu</a> •
<a href="club.html">Club</a> •
<a href="contact.html">Contact</a>
</nav>
</header>
<main>
<section>
<h2>Hot Coffee Drinks</h2>
<table>
<thead>
<tr>
<th>Beverage</th>
<th class="size">Small</th>
<th class="size">Medium</th>
<th class="size">Large</th>
</tr>
</thead>
<tbody>
<tr>
<td>Brewed Coffee</td>
<td>$1.95</td>
<td>$1.99</td>
<td>$2.19</td>
</tr>
<tr>
<td><a href="coffeeGuide.html#americano">Americano</a></td>
<td>$1.99</td>
<td>$2.29</td>
<td>$3.19</td>
</tr>
<tr>
<td><a href="coffeeGuide.html#espresso">Espresso</a> single, double, triple</td>
<td>$1.95</td>
<td>$2.75</td>
<td>$3.15</td>
</tr>
<tr>
<td><a href="coffeeGuide.html#caffeeLatte">Caffee Latte</a></td>
<td>$3.19</td>
<td>$3.45</td>
<td>$3.90</td>
</tr>
<tr>
<td>Vanilla Latte</td>
<td>$3.75</td>
<td>$4.35</td>
<td>$4.90</td>
</tr>
<tr>
<td><a href="coffeeGuide.html#cappuccino">Cappuccino</a></td>
<td>$3.29</td>
<td>$3.75</td>
<td>$4.29</td>
</tr>
<tr>
<td><a href="coffeeGuide.html#caffeMacchiato">Caffe Macchiato</a></td>
<td>$3.15</td>
<td>$4.15</td>
<td>$4.75</td>
</tr>
<tr>
<td>Caramel Macchiato</td>
<td>$3.75</td>
<td>$4.35</td>
<td>$4.90</td>
</tr>
<tr>
<td><a href="coffeeGuide.html#flatWhite">Flat White</a></td>
<td>$3.19</td>
<td>$3.45</td>
<td>$3.90</td>
</tr>
<tr>
<td><a href="coffeeGuide.html#caffeeMocha">Caffee Mocha</a></td>
<td>$3.45</td>
<td>$4.15</td>
<td>$4.49</td>
</tr>
<tr>
<td><a href="coffeeGuide.html#espressoConPanna">Espresso Con Panna</a></td>
<td>$3.19</td>
<td>$3.45</td>
<td>$3.90</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>Iced Coffee Drinks</h2>
<ul>
<li>Cold Brew</li>
<li>Iced Coffee</li>
<li>Iced Latte</li>
<li>Iced Vanilla Latte</li>
<li>Iced Caramel Macchiato</li>
<li>Iced Mocha</li>
<li>Iced White Mocha</li>
</ul>
</section>
<section>
<h2>Add ONs</h2>
<ul>
<li>Soy or Almond Milk</li>
<li>Additional Espresso Shot</li>
<li>Additional Flavored Syrup</li>
</ul>
</section>
</main>
<footer>
<a href="contact.html">Hours and Locations</a>
<address>
<p><em>Developed by:</em><a href="mailto:[email protected]">Keller Tree</a></p>
</address>
</footer>
</body>
</html>