-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (65 loc) · 2.91 KB
/
index.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 META TAG C/VIEWPORT -->
<meta name="viewport" content="width=device-width,initial-scale=1.0" charset="utf-8">
<meta name="description" content="JavaJam Coffee Bar has the best Coffees in the region,
we offer a Variety of Coffees, each with its own Unique and Delicious taste. We also have good music playing for a very relaxing experience" />
<title>JavaJam Coffee Bar</title>
<link rel="stylesheet" href="css/javajam.css">
</head>
<body>
<!-- NOTE: REPARA NA ORGANIZACAO: HEADER cabecalho titulo, NAV pra navegacao, MAIN pro main content, FOOTER pra contatos, enderecos, copyright e coisas menos importantes em geral-->
<div id="wrapper">
<header>
<!-- TODO: insert link, previous chapters -->
<h1 class="titleCoffeeBar">JavaJam Coffee Bar</h1>
</header>
<!-- TODO: chapter 2 nav: ul and li tags missing-->
<nav>
<!-- NOTE: " " significa non breaking space = espaco sem pular linha OBS: tds special characters comecam com "&"-->
<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>
<!-- TODO: ajustar a height do homehero: padronizar igual os outros hero id -->
<div id="homehero">
<!--<img id="imgHomehero" src="images/hero.jpg" alt="Fall Road">-->
</div>
<!--
<div id="mainContent">-->
<h2>Follow the Winding Road to JavaJam </h2>
<br>
<p>We`re a little out of the way, but take a drive in the country down Garret Bay Road to JavaJam today! Indulge in our locally roasted free-trade coffee and home-made pastries. You`ll feel right at home at JavaJam!</p>
<!-- TODO: -->
<p> <strong>Friendly and eclectic</strong> - JavaJam Coffee Bar is the perfect place to take a break, enjoy a refreshing beverage, and have a snack or light meal.</p>
<h3>JavaJam Coffee Bar features:</h3>
<ul>
<li>Specialty Coffee and Organic Tea</li>
<li>Bagels, Muffins, and Gluten-free Pastries</li>
<li>Organic Salads</li>
<li>Music and Poetry Readings</li>
<li>Open Mic Night</li>
</ul>
<!-- NOTE: DIV element pra fone e adress. serve pra aplicar css e javascript em uma determinada secao -->
<div>
12010 Garrett Bay Road <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><br><br>
</div>
</main>
<!-- NOTE: copyright e EMAIL vai no FOOTER TAG -->
<!-- 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>