-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathmusic.html
45 lines (41 loc) · 1.15 KB
/
music.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
<!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>
<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>
<main>
<div id="heroguitar"></div>
<h2>Music at JavaJam</h2>
<p>The first Friday night each month at JavaJam is a special night. Join us from 8 pm to 11 pm for some music you won't want to miss!</p>
<h4>January</h4>
<div class="details">
<img src="melaniethumb.jpg" alt="Melanie Morris" height="80" width="80" class="floatleft">
Melanie Morris entertains with her melodic folk style.
</div>
<h4>February</h4>
<div class="details">
<img src="gregthumb.jpg" alt="Tahoe Greg" height="80" width="80" class="floatleft">
Tahoe Greg is back from his tour. New songs. New stories.
</div>
</main>
<footer>Copyright © 2016 JavaJam Coffee House<br>
<i><a href="#">ajinkya@ghadge.com</a></i>
</footer>
</div>
</body>
</html>