-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmusic.html
76 lines (65 loc) · 2.48 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
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<!-- TODO: configure viewport pro metatag -->
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta charset="utf-8">
<meta name="description" content="Here in Javajam Coffee Bar we have awesome music for you to enjoy your time here, and have a very pleasing experience. The talented singers are Melanie Morris and Tahoe Greg" />
<title>Music of JavaJam</title>
<link rel="stylesheet" href="css/javajam.css">
</head>
<body>
<div id="wrapper">
<header>
<h1 class="titleCoffeeBar">JavaJam Coffee Bar</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="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 id="january">January</h4>
<div class="details">
<!-- TODO: configure img tag de melanie -->
<a id="melanieLink" href="images/melanie.jpg"><img id="melanieImg" src="images/melaniethumb.jpg" alt="Melanie"></a>
Melanie Morris entertains with her melodic folk style.
<audio controls>
<source src="images/Chapter11/melanie.mp3" type="audio/mpeg">
<source src="images/Chapter11/melanie.ogg" type="audio/ogg">
<a href="images/Chapter11/melanie.mp3">melanie.mp3</a>
</audio>
</div>
<h4 id="february">February</h4>
<div class="details">
<!-- TODO: configure img de greg -->
<a id="greg" href="images/greg"><img id="gregImg" src="images/gregthumb.jpg" alt="Greg"></a>
Tahoe Greg is back from his tour. New songs. New stories.
<audio controls>
<source src="images/Chapter11/greg.mp3" type="audio/mpeg">
<source src="images/Chapter11/greg.ogg" type="audio/ogg">
<a href="images/Chapter11/greg.mp3">melanie.mp3</a>
</audio>
</div>
</main>
<br>
<!-- TODO: ajustar posicao footer: tem um gap feio em baixo -->
<footer>
Copyright © 2022 JavaJam Coffee Bar<br>
<a href="mailto:[email protected]">[email protected]</a>
</footer>
</div>
</body>
</html>