This repository was archived by the owner on Oct 2, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 461
Expand file tree
/
Copy pathindex.html
More file actions
224 lines (210 loc) · 6.55 KB
/
index.html
File metadata and controls
224 lines (210 loc) · 6.55 KB
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>My form exercise</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Selling T-Shirt</h1>
<br>
<h1>Product Pick</h1>
</header>
<main>
<!-- write your html here-->
<!-- try writing out the requirements first-->
<hr>
<form action="" method="Git" enctype="multipart/form-data">
<div>
Customer Full Details:
</div>
<br>
<div>
<label for="name">Full_Name*
</label>
<input type="name" name="name" id="name" placeholder="Full-Name" required="true">
<br><br>
<div>
<label for="phone-number">Phone_Number*</label>
<input type="text"
name="text" id="phone-number" placeholder="Phone Number" required>
</div>
<br>
<div>
<label for="email">Email_Address</label>
<input type="email" name="email" id="email" placeholder="example@example.com" required>
</div>
<br>
<hr>
<br>
<div>
<div>
Delivery Address:
</div>
<br>
<div>
<label for="delivery address">Street Address</label>
<input type="text" name="delivery address" id="delivery address" placeholder="Street Address" required>
</div>
<br>
<div>
<label for="delivery address2">Street Address Line2</label>
<input type="text" name="Street Address Line2" id="delivery address2" placeholder="Street Address Line2" required>
</div>
<br>
<div>
<label for="City">City</label>
<input type="text" name="City" id="City" placeholder="city" required>
</div>
<br>
<div>
<label for="State / Province">State / Province</label>
<input type="text" name="State / Province" id="State / Province" placeholder="State / Province" required>
</div>
<br>
<div>
<label for="Postal/Zip Code">Postal / Zip Code</label>
<input type="text" name="Postal / Zip Code" id="Postal/Zip Code" placeholder="Postal / Zip Code" required>
<div>
<br>
<hr>
<br>
<div>
Order Date:
</div>
<br>
<div>
<label for="Date"> Date</label>
<input type="Date" name=" Date" id="Date" placeholder="Date" required>
</div>
<br>
<hr>
<br>
<div>
Delivery Types:
</div>
<br>
<div>
<input type="Radio" name="Delivery Type1" id="H-D" value="H-D" required>
<label for="H-D">Home Delivery*</label>
</div>
<div>
<input type="Radio" name="Delivery Type2" id="Pick-up" value="pick-up" required>
<label for="Pick-up">Pick-up*</label>
</div>
<hr> <br>
<div>
Pre Order T-Shirt:
<div>
<br>
<div class="white">
<img src="./white T-shirt.jpeg" alt="white T-Shirt">
</div>
<div>
<input type="checkbox" name="White£9.99" id="White£9.99">
<label for="White£9.99">White £9.99</label>
</div>
<div>
<label for="Quantity1">Quantity </label>
<input type="Number" name="Quantity" id="Quantity1" min="1" max="100" step="1">
</div>
<div>
<label for="Size1">Size</label>
<select name="Size1" id="Size1">
<option value="XS">XS</option>
<option value="S">S</option>
<option value="M">M</option>
<option value="L">L</option>
<option value="LX">LX</option>
<option value="XXL">XXL</option>
</select>
</div>
<br>
<br>
<div class="black">
<img src="./black T-shirt.jpeg" alt="Black T-Shirt">
</div>
<div>
<input type="checkbox" name="Black £9.99" id="Black£9.99">
<label for="Black£9.99"> Black £9.99</label>
</div>
<div>
<label for="Quantity2">Quantity</label>
<input type="Number" name="Quantity" id="Quantity2" min="1" max="100" step="1">
</div>
<div>
<label for="T-Shirt">T-Shirt</label>
<select name="T-Shirt" id="T-Shirt">
<option value="XS">XS</option>
<option value="S">S</option>
<option value="M">M</option>
<option value="L">L</option>
<option value="LX">LX</option>
<option value="XXL">XXL</option>
</select>
</div>
<br>
<br>
<div class="blue">
<img src="./blue T-shirt.jpeg" alt="Blue T-Shirt">
</div>
<div>
<input type="checkbox" name="2B Blue £9.99" id="Blue£9.99">
<label for="Blue£9.99"> blue £9.99</label>
</div>
<div>
<label for="Quantity3">Quantity</label>
<input type="Number" name="Quantity" id="Quantity3" min="1" max="100" step="1">
</div>
<div>
<label for="T-Shirt2">T-Shirt</label>
<select name="T-Shirt2" id="T-Shirt2">
<option value="XS">XS</option>
<option value="S">S</option>
<option value="M">M</option>
<option value="L">L</option>
<option value="LX">LX</option>
<option value="XXL">XXL</option>
</select>
</div>
</div>
<hr><br>
<div>
Payment Method:
</div>
<div>
<input type="radio" name="Credit Card" id="Credit Card" required>
<label for="Credit Card">Credit Card</label>
</div>
<div>
<input type="radio" name="PayPal" id="PayPal" required>
<label for="PayPal">PayPal</label>
</div>
<br>
<div>
<label for="bio">Note/ Special instruction</label>
<div>
<textarea name="bio" id="bio" cols="30" rows="10">
</textarea>
</div>
</div>
<br>
<div id="button">
<button class="btn1">Submit</button>
<button class="btn2">Reset</button>
</div>
</form>
</main>
<footer>
<!-- change to your name-->
<h2>By SALIHA POPAL</h2>
</footer>
<br>
<br>
<br>
</body>
</html>