-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgear.html
69 lines (63 loc) · 2.38 KB
/
gear.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
<!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">
<title>JavaJam Coffee Bar Gear</title>
<meta name="description" content="Buy cool Javajam Gear such as Javajam Shirt and Mug, starting at $9.95" />
<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>
<!-- TODO: aumentar min-height dos divs hero: esta muito largo -->
<div id="herocouch">
</div>
<h2>JavaJam Gear</h2>
<br>
<p>JavaJam gear not only looks good, it`s good to your wallet, too.</p>
<p>Get a 10% discount when you wear a JavaJam shirt or bring in your JavaJam mug!</p>
<!-- NOTE: acho que isso e um grid ou flexbox, pela formatacao -->
<!-- TODO: aprender sobre grid e flexbox -->
<div id="flow">
<div class="item">
<img src="./images/Chapter12/javashirt.jpg" alt="JavaJam t-shirt">
<h3>JavaJam Shirt</h3>
<p>Javajam shirts are comfortable to wear to school and around town. 100% cotton. XL only. $14.95</p>
<form method="post" action="https://webdevbasics.net/cart.html">
<input type="submit" value="Add to Cart">
</form>
</div>
<div class="item">
<img src="./images/Chapter12/javamug.jpg" alt="JavaJam mug">
<h3>JavaJam Mug</h3>
<p>JavaJam mugs carry a full load of caffeine(12 oz.) to jump-start your morning. $9.95.</p>
<form method="post" action="https://webdevbasics.net/cart.html">
<input type="submit" value="Add to Cart">
</form>
</div>
</div>
</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>