|
18 | 18 | <h1>Active Mens T-shirt</h1> |
19 | 19 | </header> |
20 | 20 |
|
| 21 | + <p>ORDER NOW</p> |
21 | 22 |
|
22 | 23 | <main> |
23 | 24 | <form> |
24 | | - |
| 25 | + <div> |
| 26 | + <label for="first-name"><span class="required"></span> First Name</label> |
| 27 | + <input type="text" id="first-name" name="first-name" placeholder="First Name" required minlength="2"/> |
| 28 | + </div> |
| 29 | + |
| 30 | + <div> |
| 31 | + <label for="last-name"><span class="required"></span> Last Name</label> |
| 32 | + <input type="text" id="last-name" name="last-name" placeholder="Last Name" required minlength="2"/> |
| 33 | + </div> |
| 34 | + |
| 35 | + <div> |
| 36 | + <label for="email"><span class="required"></span> Email Address</label> |
| 37 | + <input type="email" name="email" id="email" placeholder="Email"/> |
| 38 | + </div> |
| 39 | + |
| 40 | + <div> |
| 41 | + <label for="color">Color</label> |
| 42 | + |
| 43 | + <select name="color" id="color"> |
| 44 | + <option value="cream">Red</option> |
| 45 | + <option value="black">Black</option> |
| 46 | + <option value="blue">Blue</option> |
| 47 | + <option value="cream">White</option> |
| 48 | + <option value="black">Yellow</option> |
| 49 | + <option value="blue">Brown</option> |
| 50 | + </select> |
| 51 | + </div> |
| 52 | + |
| 53 | + <div> |
| 54 | + <label for="size">Size</label> |
| 55 | + |
| 56 | + <select for="size" id="size"> |
| 57 | + <option value="xsmall">x-Small</option> |
| 58 | + <option value="small">Small</option> |
| 59 | + <option value="medium">Medium</option> |
| 60 | + <option value="large">Large</option> |
| 61 | + <option value="x-large">X-Large</option> |
| 62 | + </select> |
| 63 | + </div> |
| 64 | + |
| 65 | + <div> |
| 66 | + <label for="quantity"> Quantity</label> |
| 67 | + <input type="number" id="quantity" name="quantity" min="1" max="4" value="1" required/> |
| 68 | + </div> |
| 69 | + |
| 70 | + <div> |
| 71 | + <label for="date"><span class="required"></span> Delivery date</label> |
| 72 | + <input type="date" name="date" id="date" required min="23-08-2023"/> |
| 73 | + </div> |
| 74 | + |
| 75 | + <div> |
| 76 | + <input type="submit" id="submit" name="submit"/> |
| 77 | + </div> |
25 | 78 | </form> |
26 | | - </main> |
27 | 79 |
|
28 | | - |
29 | | - <!-- <img |
| 80 | + <img |
30 | 81 | src="images/md-salman.jpg" |
31 | | - class="clothing-image" |
32 | | - alt="t-shirt design" |
33 | | - /> --> |
| 82 | + class="t-shirt" |
| 83 | + alt="t-shirt designs" |
| 84 | + /> |
| 85 | + </main> |
| 86 | + |
34 | 87 |
|
35 | 88 |
|
36 | 89 | <!-- FOOTER SECTION --> |
|
0 commit comments