-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDev.html
85 lines (84 loc) · 3.82 KB
/
Dev.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Buy Customised T shirts</title>
</head>
<body>
<h1>Create T-Shirts with Your own unique tagline!!</h1>
<hr>
<h1>Select a Category:</h1>
<p>
<input type="radio" name="gender" value="Male">
<label for="gender">Male</label>
</p>
<p>
<input type="radio" name="gender" value="Female">
<label for="gender">Female</label>
</p>
<button type="submit">Select</button>
<hr>
<h2>Select a Size:</h2>
<select name="Size" id="">Size
<option value="Small">Small</option>
<option value="Medium">Medium</option>
<option value="Large">Large</option>
<option value="XL">XL</option>
<option value="XXL">XXL</option>
</select>
<hr>
<h2>Few T-Shirt Styles ...</h2>
<img src="https://assets.vogue.com/photos/617c1cc0842b6d00d5ee6b61/master/w_1280%2Cc_limit/slide_13.jpg" alt="White-T-Shirt" width="300px" height="300px">
<img src="https://4.imimg.com/data4/YT/TC/MY-12041309/plain-t-shirt-250x250.png" alt="" width="300px" height="300px">
<img src="https://5.imimg.com/data5/PY/ET/MY-38735883/t-shirt-500x500.jpg" alt="" width="300px" height="300px">
<img src="https://media.gq.com/photos/5ffcc94abcf3d9e8a520baf5/master/w_2000,h_1333,c_limit/Colorful-Standard-classic-organic-tee.jpg" alt="" width="400px" height="300px">
<h2>Select a Color</h2>
<p>
<input type="radio" name="color" value="violet">
<label for="gender">Violet</label>
<input type="radio" name="color" value="violet">
<label for="gender">Blue</label>
<input type="radio" name="color" value="violet">
<label for="gender">Green</label>
<input type="radio" name="color" value="violet">
<label for="gender">Yellow</label>
<input type="radio" name="color" value="violet">
<label for="gender">Orange</label>
<input type="radio" name="color" value="violet">
<label for="gender">Red</label>
<input type="radio" name="color" value="violet">
<label for="gender">Pink</label>
<input type="radio" name="color" value="violet">
<label for="gender">Cyan</label>
<input type="radio" name="color" value="violet">
<label for="gender">Beige</label>
</p><button type="submit">Select</button>
<hr>
<h2>Enter Your Tagline :</h2>
<p><label for="tagline">Tagline:</label>
<input type="text" name="tagline" id="" placeholder="Enter Your Tagline Here"></p>
<hr>
<h2>Select Number of T-Shirts</h2>
<p>
<label for="quantity">Select:</label>
<input type="number" name="quantity" min="1" max="25" step="1">
</p>
<hr>
<h1>Your Details</h1>
<p><label for="Name">Name:</label>
<input type="text" name="Name" id="" placeholder="Enter Your Full Name Here"></p>
<p><label for="Name">Address:</label>
<input type="text" name="Name" id="" placeholder="Enter Your Address Here"></p>
<p><label for="Name">Contact No:</label>
<input type="text" name="Name" id="" placeholder="Enter Your Phone No. Here"></p>
<p><label for="Name">Payment Type:</label>
<p><select name="" id="">Payment
<option value="">Debit Card</option>
<option value="">Credit Card</option>
<option value="Visa">Net Banking</option>
<option value="Visa">Cash on Delivery</option>
</select>
</p>
<hr>
<button type="submit">Confirm Order</button>
</body>
</html>