-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (61 loc) · 2.14 KB
/
index.html
File metadata and controls
71 lines (61 loc) · 2.14 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
<!Doctype html>
<html lang="en">
<head>
<title>Online Shop </title>
</head>
<body align=center>
<h1>T-shirt Shopping </h1>
<img src="white-plain-t-shirt.jpg " height="200px">
<p> <strong> H&M </strong> <br> Green Round Neck Shirt</p>
<p> <strong>Rs.900 </strong> <strike>Rs.1800</strike> (50% OFF)</p>
<img src="IMG_0999.jpg " height="200px">
<p><strong>Forever 21 </strong> <br>White Printed Round Neck Shirt</p>
<p> <strong>Rs.999 </strong> <strike>Rs.1999</strike> (50% OFF)</p>
<table align=center cellpadding = "10">
<tr>
<td>Enter Customized text:</td>
<td><input type="text" name="" maxlength="50" placeholder="" />
</td>
</tr>
<tr>
<td>Color</td>
<td><input type="color" />
</td>
</tr>
<tr>
<td>Enter Quantity:</td>
<td><input type="number" min="1" max="10" /> *Maximim limit 10*
</td>
</tr>
<tr>
<td>Size Chart</td>
<td>
<select name="Size Chart" id="Size_Chart">
<option value="-1">Size:</option>
<option value="1">S</option>
<option value="2">M</option>
<option value="3">L</option>
<option value="3">XL</option>
<option value="3">XXL</option>
</select>
</td>
</tr>
<td><strong><ins>Delivery options</td></strong></ins>
<tr>
<td>Address</td>
<td><textarea name="Address" rows="10" cols="50"></textarea></td>
</tr>
<tr>
<td>Enter Pincode</td>
<td><input type="number" name="pin" placeholder="Eg. 400615"/> </td>
</tr>
<tr>
<td>Date</td>
<td><input type="date" min="20-05-2021" max="01-06-2021"/> </td>
</tr>
<td>
<br><input type="submit" value="Place Order">
</td>
</table>
</body>
</html>