-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexp1b.html
More file actions
88 lines (76 loc) · 2.74 KB
/
exp1b.html
File metadata and controls
88 lines (76 loc) · 2.74 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
<!Doctype html>
<html lang="en">
<head>
<title>Online Shop </title>
<style>
body{
background-color: #ffb5ff;
}
h1{
text-align: center;
}
</style>
</head>
<body>
<h1><u>T-shirt Shopping</u> </h1>
<img src="t1.JPG"/ height="300px">
<p> <b> HERE&NOW </b> <br> Men White Solid Round Neck T-shirt</p>
<p> <strong>Rs.449 </strong> <strike>Rs.999</strike> (55% OFF)</p>
<img src="t2.JPG"/ height="300px">
<p><b>HRX by Hrithik Roshan </b> <br>Men Yellow Printed Round Neck T-Shirt</p>
<p> <strong>Rs.349 </strong> <strike>Rs.699</strike> (50% OFF)</p>
<table align="left" cellpadding = "10">
<!--------------------Enter Customized Text:------------------------->
<tr>
<td>Enter Customized text:</td>
<td><input type="text" maxlength="50" placeholder="" />
</td>
</tr>
<!-----------------Color------------------------------>
<tr>
<td>Color</td>
<td><input type="color" />
</td>
</tr>
<!-------------------Quantity---------------------->
<tr>
<td>Enter Quantity:</td>
<td><input type="number" min="1" max="10" /> *Maximum limit 10*
</td>
</tr>
<!-----------------------Size----------------------->
<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>
<!----------------Enter Address--------------------->
<tr>
<td>Enter Address</td>
<td><textarea name="Address" cols="50" rows="5"></textarea> </td>
</tr>
<!------------------Pincode------------------------>
<tr>
<td>Enter Pincode</td>
<td><input type="number" name="pin" placeholder="Eg. 421004"/> </td>
</tr>
<!-----------------Date----------------------------->
<tr>
<td>Date</td>
<td><input type="date" min="20-05-2021" max="01-06-2021"/> </td>
</tr>
<!-------------Submit Button--------------------->
<td>
<br><input type="submit" value="Place Order">
</td>
</table>
</body>
</html>