-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (99 loc) · 2.86 KB
/
index.html
File metadata and controls
111 lines (99 loc) · 2.86 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js">
</script>
<![endif]-->
<title>JavaJam Coffee House</title>
<link rel="stylesheet" href="./css/javajam.css">
</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 id="hero">
<h2>Follow the Winding Road to JavaJam</h2>
<section>
<ul>
<li>Specialty Coffee and Tea</li>
<li>Bagels, Muffins, and Organic Snacks</li>
<li>Music and Poetry Readings</li>
<li>Open Mic Night Every Friday Night</li>
</ul>
54321 Route 42 <br> Ellison Bay, WI 54210 <br>
<a class="mobile" href="tel:1-888-555-5555">1-888-555-5555</a>
<span class="desktop">1-888-555-5555</span>
</section>
</main>
<footer>
<small>Copyright © 2016 JavaJam Coffee House
<br><a href="mailto:gcedarblade@student.cvtc.edu">
gcedarblade@student.cvtc.edu</a></small>
</footer>
</div>
</body>
</html>
menu.html
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js">
</script>
<![endif]-->
<title>JavaJam Coffee House Menu</title>
<link rel="stylesheet" href="./css/javajam.css">
</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>
<td>Just Java</td>
<td>Regular house blend, decaffeinated coffee, or flavor of the day.<br>Endless Cup $2.00</td>
</tr>
<tr>
<td>Cafe au Lait</td>
<td>House blende coffee infused into a smooth, steamed milk. <br>Single $2.00 Double $3.00</td>
</tr>
<tr>
<td>Iced Cappuccino</td>
<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>
<small>Copyright © 2016 JavaJam Coffee House
<br><a href="mailto:gcedarblade@student.cvtc.edu">
gcedarblade@student.cvtc.edu</a></small>
</footer>
</div>
</body>
</html>