-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProductOrder.html
151 lines (139 loc) · 6.65 KB
/
ProductOrder.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A Project Completed for an Assignment">
<link href="css/styles.css" rel="stylesheet">
<link rel="icon" type="image/png" href="img/bblogo.png" sizes="196x196" />
<title>Bath&Body Works | Product Order</title>
</head>
<body class="product-order-page">
<header>
<div class="container">
<div class="branding">
<img src="img/B.png" alt="B & B works" class="main-logo" width="100%" height="20%">
<nav>
<ul>
<li>
<a href="index.html">
About Us
</a>
</li>
<li>
<a href="Product.html">
Products
</a>
</li>
<li class="current">
<a href="ProductOrder.html">
Product Order
</a>
</li>
<li><a href="ContactUs.html">
Contact Us
</a>
</li>
</ul>
</nav>
</div>
</div>
</header>
<main class="container">
<form class="feedback" action="product-order.jsp">
<fieldset>
<h5>Please fill in the order form below with the items you want to purchase from our
store.<br>
Thank you for choosing our services!</h5>
<legend>
<h3><b>Order Product</b></h3>
</legend>
<div>
<label>Full Name</label><br>
<input type="text" placeholder="Full Name" name="Name" required>
</div>
<div>
<label>Email</label><br>
<input type="email" placeholder="Email" name="Email" required>
</div>
<div>
<label>Phone Number</label><br>
<input type="number" placeholder="How can we communicate with you?" name="Email" required>
</div>
<div>
<label>
<h2>Address</h2>
</label>
<input type="text" placeholder="Street Address" name="Street Address" required>
<input type="text" placeholder="Street Address" name="Street Address" required>
<input type="text" placeholder="City" name="City" required>
<input type="text" placeholder="State" name="State" required>
<input type="text" placeholder="Postal/Zipcode" name="Zipcode" required>
<select name="country" id="Country">
<option value="">Country</option>
<option value="Australia">Australia</option>
<option value="Bangladesh">Bangladesh</option>
<option value="Canada">Canada</option>
<option value="Indonesia">Indonesia</option>
<option value="Malaysia">Malaysia</option>
<option value="Netherlands">Netherlands</option>
<option value="New Zealand">New Zealand</option>
<option value="Saudi Arabia">Saudi Arabia</option>
<option value="Singapore">Singapore</option>
<option value="Switzerland">Switzerland</option>
<option value="United Arab Emirates">United Arab Emirates</option>
<option value="United Kingdom">United Kingdom</option>
<option value="United States">United States</option>
<option value="Yemen">Yemen</option>
</select>
</div>
<label>Product(s) </label>
<ul class="products-checkbox">
<li>
<label for="Mist">
<input id="Mist" type="checkbox" name="Mist" value="Mist">
Mist
</label>
</li>
<li>
<label for="Lotion">
<input type="checkbox" name="Lotion" value="Body Lotion" />
Body Lotion
</label>
</li>
<li><label for="Candle">
<input type="checkbox" name="Products" value="Candles" />
Candle
</label>
</li>
<li> <label for="Handwash">
<input type="checkbox" name="Handwash" value="Hand wash" />
Hand wash
</label>
</li>
<li><label for="scent">
<input type="checkbox" name="scent" value="Car scent">
Car scent
</label>
</li>
</ul>
<button type="submit">Submit</button>
</fieldset>
</form>
</main>
<footer>
<p>Want more updates on the brand?? <br> Follow Us</p>
<a href="https://www.facebook.com/bathandbodyworks/" class="icon">
<img src="img/Facebook.png" width="40" height="40" alt="facebook"></a>
<a href="https://twitter.com/bathbodyworks?lang=en" class="icon">
<img src="img/Twitter.png" width="40" height="40" alt="twitter"></a>
<a href="https://www.instagram.com/bathandbodyworks/?hl=en" class="icon">
<img src="img/Instagram.png" width="40" height="40" alt="instagram"></a>
<a href="https://www.youtube.com/user/bathandbodyworks" class="icon">
<img src="img/youtube.png" width="40" height="40" alt="youtube"></a>
<a href="https://www.pinterest.com/bathbodyworks/" class="icon">
<img src="img/pinterest.png" width="40" height="40" alt="pintrest"></a>
<br> Bath&Body Works © 2018 by <a href="https://github.com/sumaiyakawsar">Sumaiya Kawsar</a><br />
For Java Web Programming
</footer>
</body>
</html>