forked from c9zealous/Javajam-Coffee-House-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.html
51 lines (50 loc) · 1.36 KB
/
menu.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>JavaJam Coffee House</title>
<meta charset="utf-8">
<link rel="stylesheet" href="javajam.css">
</head>
<body>
<div id="wrapper">
<header>
<h1>JavaJam Coffee House</h1>
</header>
<table id="nav-bar">
<tr>
<td>
<nav>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="menu.html">Menu</a></li>
<li><a href="music.html">Music</a></li>
<li><a href="jobs.html">Jobs</a></li>
</ul>
</nav>
</td>
</tr>
</table>
<main id="menu_main">
<div id="heromugs"></div>
<h2>Coffee at JavaJam</h2>
<p>Indulge in our locally roasted free-trade coffee and enjoy the aroma, the smooth taste, the caffeine! Join our Mug Club and get a 10% discount on each cup of coffee you purchase — ask the barista for details.</p>
<table id="content-table">
<tr>
<td><b>Just Java</b><br>
<dd>Regular house blend, decaffeinated coffee, or flavor of the day.</dd>
<dd>Endless Cup $2.00</dd>
<b>Cafe au Lait</b><br>
<dd>House blended coffee infused in to a smooth, steamed milk.</dd>
<dd>Single $2.00 Double $3.00</dd>
<b>Iced Cappuccino</b><br>
<dd>Sweetened espresso blended with icy-cold milk and served in a chilled glass.</dd>
<dd>Single $4.75 Double $5.75</dd></td>
</tr>
</table>
</main>
<footer>Copyright © 2016 JavaJam Coffee House<br>
<i><a href="#">[email protected]</a></i>
</footer>
</div>
</body>
</html>