This repository was archived by the owner on Feb 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmenu.html
More file actions
137 lines (123 loc) · 3.32 KB
/
menu.html
File metadata and controls
137 lines (123 loc) · 3.32 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
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=PT+Sans+Narrow|Roboto+Mono|Yellowtail" rel="stylesheet">
<title>A+ Coffee</title>
</head>
<body>
<header>
<!-- Navigation Section/Header -->
<div class="navbar">
<!-- <h1 class="logo"></h1> -->
<div class="logo">
<img src="images/coffeelogo11.png" alt="A+ Coffee Shop logo">
</div>
<div class= "right-navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="menu.html">Menu</a></li>
<li><a href="about.html">About</a></li>
<li><a href="team.html">Team</a></li>
</ul>
</div>
</div>
</header>
<!-- Menu Section -->
<section class="menu">
<h2 class="missionTitle" style="text-align: center;"> Menu </h2>
<div class="drinkMenu">
<table class="tableItem">
<thead>
<tr>
<th scope="col">DRINKS</th>
<th scope="col">PRICE</th>
<th scope="col">SERVED HOT/COLD</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">ESPRESSO</th>
<td>7.50$</td>
<td>HOT</td>
</tr>
<tr>
<th scope="row">AMERICANO</th>
<td>8.50$</td>
<td>HOT</td>
</tr>
<tr>
<th scope="row">FRENCH PRESS COFFEE</th>
<td>5.50$</td>
<td>HOT</td>
</tr>
<tr>
<th scope="row">ICED COFFEE</th>
<td>4.50$</td>
<td>COLD</td>
</tr>
<tr>
<th scope="row">LATTE</th>
<td>5.50$</td>
<td>HOT</td>
</tr>
<tr>
<th scope="row">MACCHIATO</th>
<td>6.50$</td>
<td>HOT</td>
</tr>
<tr>
<th scope="row">MOCHA</th>
<td>5.00$</td>
<td>HOT</td>
</tr>
<tr>
<th scope="row">CHAI LATTE</th>
<td>6.00$</td>
<td>HOT</td>
</tr>
<tr>
<th scope="row">COLD BREW COFFEE</th>
<td>3.50$</td>
<td>COLD</td>
</tr>
<tr>
<th scope="row">CAFFEE AMERICANO</th>
<td>9.00$</td>
<td>HOT</td>
</tr>
</tbody>
</table>
</div>
</section>
<!--
Footer Section
-->
<footer>
<div class="box">
<h2>Hours</h2>
<p>
<br>
<em> Monday-Friday</em><br>
6:30am-10pm<br>
<br><em>Saturday</em><br>
7am-10pm<br>
<br><em>Sunday</em><br>
7am-8pm
</div>
<div class="box2">
<h2>Location</h2>
<p>
<br>
250 Bedford Park Blvd W<br>
The Bronx, NY 10468<br>
<img src="images/DANAS COMPLETE LOGO[963].png" alt="a+ logo" height="200" width="200">
</p>
</div>
<div>
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12067.301043271313!2d-73.8946361!3d40.8757088!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c2f39c83db9c2d%3A0x8d63bfb3da071ace!2sLehman+College!5e0!3m2!1sen!2sus!4v1554408130132!5m2!1sen!2sus" alt="google map" width="600" height="450" frameborder="0" style="border:0" allowfullscreen></iframe>
</div>
</footer>
</body>
</html>