-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (95 loc) · 3.43 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tshirt Order</title>
</head>
<body>
<h2>Fill in the details</h2>
<form>
<table cellpadding="20">
<tr>
<td><strong>Name:</strong></td>
<td><input type="text" name="Name" maxlength="50" placeholder="Enter your name">
</td>
</tr>
<tr>
<td><strong>Address:</strong></td>
<td><input type="text" name="address" maxlength="100" placeholder="Enter your address">
</td>
</tr>
<tr>
<td><strong>Contact:</strong></td>
<td><input type="number" name="mobile" maxlength="10" placeholder="Enter your mobile no">
</td>
</tr>
</table>
<br>
<h3>What type of shirt do you want? </h3>
<table cellspacing="20">
<tr>
<td><strong>Select Brand:</strong></td>
<td>
<Select name="brand">
<option value="-1"></option>
<option value="1">Only</option>
<option value="2">Zara</option>
<option value="3">H&M</option>
<option value="4">Levis</option>
</Select>
</td>
</tr>
<tr>
<td><strong>Select color:</strong></td>
<td>
<Select name="color">
<option value="-1"></option>
<option value="1">Blue</option>
<option value="2">Red</option>
<option value="3">Yellow</option>
<option value="4">Green</option>
</Select>
</td>
</tr>
<tr>
<td><strong>Select size:</strong></td>
<td>
<Select name="color">
<option value="-1"></option>
<option value="1"> XS </option>
<option value="2"> S </option>
<option value="3"> L </option>
<option value="4"> XL </option>
</Select>
</td>
</tr>
<tr>
<td><strong>Enter Quantity:</strong></td>
<td><input type="number" name="quantity" maxlength="5">
</td>
</tr>
<tr>
<td><strong><h3> Payment type:</h3></strong></td>
<tr>
<td>
<input type="radio" name="Payment">
Cash on delivery<br>
<input type="radio" name="Payment">
Credit Card<br>
<input type="radio" name="Payment">
Debit Card<br>
<input type="radio" name="Payment">
Gpay<br>
<input type="radio" name="Payment">
Paytm
</td>
</tr>
<tr>
<td><button>Order</button></td>
</tr>
</table>
</form>
</body>
</html>