-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.html
57 lines (57 loc) · 2.31 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
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="javajam.css">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js">
</script>
<![endif]-->
<title>JavaJam Coffee House Menu</title>
</head>
<body>
<div id="wrapper">
<header>
<h1>JavaJam Coffee House</h1>
</header>
<nav>
<ul>
<li><a href="index.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>
<li><a href="gear.html">Gear</a></li>
</ul>
</nav>
<main>
<div id="heromugs"></div>
<h2>Coffee at JavaJam</h2>
<p>Indulge in our locally roasted free-trade coffee and enhoy 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>
<tr>
<th><strong>Just Java</strong></th>
<td>Regular house blend, decaffeinated coffee, or flavor of the day. <br>
Endless Cup $2.00</td>
<br>
<tr>
<th><strong>Cafe au Lait</strong></th>
<td>House blended coffee infused into a smooth, steamed milk. <br>
Single $2.00 Double $3.00</td>
<br>
</tr>
<tr>
<th><strong>Iced Cappuccino</strong></th>
<td>Sweetened espresso blended with icy-cold milk and served in a chilled glass <br>
Single $4.75 Double $5.75</td>
</tr>
</table>
</main>
<footer>
<br>
Copyright © 2016 JavaJam Coffee house <br><a href="mailto:[email protected]">[email protected]</a>
</footer>
</div>
</body>
</0html>