-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathE2.html
230 lines (107 loc) · 2.97 KB
/
E2.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
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
224
225
226
227
228
229
230
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Customized T-shirt</title>
</head>
<body>
<h1> <u> My Order </u></h1>
<form action="">
<label for="tagline"
>
<strong>What tagline do you want on the T-shirt:</strong>
</label
>
<br />
<br />
<input
type="text"
id="tagline"
name="tagline"
placeholder="Cricket World"
/>
<br />
<p>
<strong>T-shirt color:</strong>
</p>
<form>
<fieldset>
<legend>Choose your required T-Shirt colour</legend>
<input type="radio" id="kraken" name="monster">
<label for="kraken">Red</label><br/>
<input type="radio" id="sasquatch" name="monster">
<label for="sasquatch">Blue</label><br/>
<input type="radio" id="mothman" name="monster">
<label for="mothman">Black</label>
</fieldset>
</form>
<input type="radio" id="black" name="color" value="black" />
<label for="black">Black</label><br />
<input type="radio" id="red" name="color" value="red" />
<label for="red">Red</label><br />
<input type="radio" id="green" name="color" value="green" />
<label for="green">Green</label><br />
<input type="radio" id="blue" name="color" value="blue" />
<label for="blue">Blue</label><br /><br />
<label for="size"><strong>T-shirt size:</strong></label
>
<br />
<br />
<select name="size" id="size">
<option value="S">S</option>
<option value="M">M</option>
<option value="L">L</option>
<option value="XL">XL</option></select
>
<br /><br />
<label for="quantity">
<strong>Quantity:</strong></label>
<input type="number" min="0" />
<br />
<br />
<label for="order-date">
<strong>Deliver By:</strong>
</label>
<input type="date" id="order-date" name="order-date" />
<br />
<br />
<label for="name">
<strong>Enter your name:</strong>
</label
>
<br />
<br />
<input type="text" id="name" name="name" />
<br />
<br />
<label for="number">
<strong>Enter your mobile number:</strong>
</label
>
<br />
<br />
<input type="text" id="number" name="number" />
<br />
<br />
<label for="address">
<strong>Enter your address:</strong></label
>
<br />
<br />
<textarea id="address" name="address" rows="5" cols="30">
</textarea>
<p>
<strong>Choose payment option:</strong></p>
<input type="radio" id="card" name="pay" value="card" />
<label for="card">Card</label>
<br />
<input type="radio" id="cash" name="pay" value="cash" />
<label for="cash on delivery">Cash</label>
</br>
</br>
<p><strong>Price: </strong>Rs.100 per T-shirt</p>
<input type="submit" value="Confirm" />
<input type="reset" value="Reset" />
</form>
</body>
</html>