-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct-page-food-5.html
97 lines (89 loc) · 3.23 KB
/
product-page-food-5.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html>
<head>
<title>FISHOP</title>
<link rel="stylesheet" href="product-page.css">
<link rel="stylesheet" href="main.css">
</head>
<!-- BEGIN HEADER -->
<div>
<a href="index.html">
<img class=logo src="img/logo.png" alt="logo">
</a>
<div class="caption">
<p>THE #1 FISH SHOP FOR YOUR ALL YOUR FISH NEEDS</p>
</div>
</div>
<div class="nav">
<a href="index.html#left-nav">SHOP</a>
<a href="about.html">ABOUT US</a>
</div>
<!-- END HEADER -->
<!-- BEGIN MIDDLE -->
<div class="listing" id="img/live-fish/blind-cave-tetra">
<header>Blind Cave Tetra</header>
<header>PURCHASE FORM</header>
<div class=" picture-carousel" id="pictureCarousel">
<a class="prev" onclick="showPicture(-1)">
< </a>
<a class="next" onclick="showPicture(1)">></a>
</div>
<div>
<form id="myForm" onsubmit="checkForm();return false;">
<p class="error" id="error"></p>
<label for="products">Select Item:</label>
<select id="products">
<option>Blind Cave Tetra</option>
</select>
<label for="quantity">Quanity:</label>
<select id="quantity">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
</select>
<label for="fname">First name:</label>
<input type="text" id="fname">
<label for="lname">Last name:</label>
<input type="text" id="lname">
<label for="phoneNumber">Phone Number (XXXXXXXXXX): </label>
<input type="text" id="phoneNumber">
<label for="street">Street:</label>
<input type="text" id="street">
<label for="city">City:</label>
<input type="text" id="city">
<label for="state">State:</label>
<input type="text" id="state">
<label for="postalCode">Postal Code (XXXXX):</label>
<input type="text" id="postalCode">
<label for="shippingMethod">Shipping Method:</label>
<select id="shippingMethod">
<option>Overnight</option>
<option>2 Days Expedited</option>
<option>6 Days Ground</option>
</select>
<label for="ccnumber">Credit Card Number (XXXXXXXXXXXXXXXX):</label>
<input type="text" id="ccnumber">
<label for="ccv">CCV (XXX) or (XXXX):</label>
<input type="text" id="ccv">
<input type="submit" id="submit">
</form>
</div>
<p>PRICE (each): $6.99</p>
</div>
<div class="extended-description">
<p>Detailed Description: Size Now:1" to 1.5"
Yes this fish is blind. It was born with no eyes, just like its parents and ancestors, who lived in caves with
no light.
So they didn't need eyes, and Blind Cave Tetras like this one somehow navigate surprisingly well inside
aquariums and are great fun to watch.
</p>
</div>
<!-- END MIDDLE -->
<!-- BEGIN FOOTER -->
<div class="nav">
<a1>Name: Vivian Nguyen / UCINetID: nguyev12 / ID #: 84955920 / Machine Number: 27</a1>
</div>
<!-- END FOOTER -->
<script src="main.js"></script>
</html>