-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.html
72 lines (61 loc) · 2.38 KB
/
menu.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<!-- TODO: configure viewport for meta-->
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta charset="utf-8">
<meta name="description" content="JavaJam Coffee Bar has the best coffees in the region,
it`s just the best way to start your day! We offer Cafe au Lait, Iced Cappuccino and our signature Just Java" />
<title>JavaJam Coffee Bar Menu</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>
<!-- TODO: fazer um div tipo homehero com a imagem images/mugs.jpg -->
<main>
<div id="heromugs">
</div>
<h2>Coffee at JavaJam</h2>
<br>
<p>Indulge in our locally roasted free-trade coffee and enjoy the aroma, the smooth taste, the caffeine!
Join our Mug Club and get a 10% discount on each cup of coffee you purchase -- ask the barista for details</p>
<!-- TODO: modificar table style: estilo zebra, marrom em um e claro em outro -->
<div id="flow">
<table>
<tr>
<th>Just java</th>
<td>Regular house blend, decaffeinated coffee, or flavor of the day. <br>Endless Cup $3.50</td>
</tr>
<tr>
<th>Cafe au Lait</th>
<td>House blended coffee infused into a smooth, steamed milk. <br> Single $4.00 Double $5.00</td>
</tr>
<tr>
<th>Iced Cappuccino </th>
<td>Sweetened espresso blended with icy-cold milk and served in a chilled glass.<br> Single $5.00 Double $6.50 </td>
</tr>
</table>
</div>
<!-- NOTE: "dl"(description list) tag + "dt"(definition term) + "dd"(description). SERVEM PRA GLOSSARIO, MENU/LISTA DE ITEMS COM DESCRICAO PARA CADA ITEM (em "dd")-->
</main>
<br>
<!-- TODO: ajustar posicao footer: tem um gap feio em baixo -->
<footer id="menuFooter">
Copyright © 2022 JavaJam Coffee Bar<br>
<a href="mailto:[email protected]">[email protected]</a>
</footer>
</div>
</body>
</html>