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 pathindex.html
More file actions
45 lines (44 loc) · 1.46 KB
/
index.html
File metadata and controls
45 lines (44 loc) · 1.46 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
<!DOCTYPE html>
<html>
<head>
<title>JavaJam Coffee House</title>
<link rel="stylesheet" href="javajam.css">
<link rel="icon" href="photos/favicon.ico" type="image/x-icon">
<meta name="viewport"
content="width=device-width,
initial-scale=1.0">
<!--[if le IE 9]>
<script src="http://html5shim.google.com/svn/trunk/html5.js">
</script>
<![endif]-->
</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>
<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>
<div>
<p>54321 Route 42</br>Ellison Bay, WI 54210</br><a id="mobile" href="tel:888-555-5555">888-555-5555</a><span id="desktop">888-555-5555</span></p>
</div>
</main>
</div>
<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>