This repository was archived by the owner on May 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmenu.html
More file actions
43 lines (41 loc) · 1.42 KB
/
menu.html
File metadata and controls
43 lines (41 loc) · 1.42 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
<!DOCTYPE html>
<html>
<head>
<title>JavaJam Coffee House Menu</title>
<link rel="stylesheet" href="javajam.css">
<link rel="icon" href="photos/favicon.ico" type="image/x-icon">
</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>
</ul></nav>
<main>
<h2>Coffee at JavaJam</h2>
<table>
<tr>
<th>Just Java</th>
<td>Regular house blend, decaffeninated coffee, or flavor of the day.</br>Endless Cup $2.00</td>
</tr>
<tr>
<th>Cafe au Lait</th>
<td>House blended coffee infused into a smooth, steamed milk.</br>Single $2.00 Double $3.00</td>
</tr>
<tr>
<th>Iced Cappuccino</th>
<td>Sweetened espresso blended with icy-cold milk and served in a chilled glass.</br>Single $4.00 Double $5.75</td>
</tr>
</table>
</main>
<footer><i><small>
<p>Copyright © 2016 JavaJam Coffee House</br><a href="mailto:invalid@address.com?subject=feedback">Brandon@Williams.com</a>
</small></i></footer>
</div>
</body>
</html>