-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgear.html
58 lines (58 loc) · 2.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="javajam.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="scripst.js"></script>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js">
</script>
<![endif]-->
<title>JavaJam Coffee House Gear</title>
</head>
<body>
<div id="wrapper">
<header>
<h1>JavaJam Gear</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="herocouch"></div>
<h2>Music at JavaJam</h2>
<p>JavaJam hear not only look 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>
<img src="images/javashirt.jpg" alt="JavaJam shirt" class="floatleft">
<p>JavaJam shirts are comfortable to wear to school and around town. 100% cotton. XL only $14.95</p>
<form method="POST" action="http://www.webdevfoundations.net/scripts/cart.asp">
<input type="hidden" name="desc1" id="desc1" value="JavaJam shirt">
<input type="hidden" name="cost1" id="cost1" value="$14.95">
<input type="submit" value="Add to Cart">
</form>
<br class="clearleft">
<img src="images/javamug.jpg" alt="JavaJam mug" class="floatleft">
<p>JavaJam mugs carry a fill load of caffeine (12 oz.) to jump-start your morning. $9.95.</p>
<form method="POST" action="http://www.webdevfoundations.net/scripts/cart.asp">
<input type="hidden" name="desc2" id="desc2" value="JavaJam Mug">
<input type="hidden" name="cost2" id="cost2" value="$9.95">
<input type="submit" value="Add to Cart">
</form>
<br class="clearleft">
</main>
<footer>
<br>
Copyright © 2016 JavaJam Coffee house <br><a href="mailto:[email protected]">[email protected]</a>
</footer>
</div>
</body>
</0html>