|
10 | 10 | </head> |
11 | 11 | <body> |
12 | 12 | <header> |
13 | | - <h1>Product Pick</h1> |
| 13 | + <h1>T-Shirt Product Pick</h1> |
14 | 14 | </header> |
15 | 15 | <main> |
16 | 16 | <form> |
17 | 17 | <!-- write your html here--> |
18 | 18 | <!-- |
19 | 19 | try writing out the requirements first as comments |
20 | 20 | this will also help you fill in your PR message later--> |
| 21 | + |
| 22 | + <div> |
| 23 | + <label for="name">Name</label> |
| 24 | + <input type="text" name="name" id="name" placeholder="Monsur Abdulrahman" required> |
| 25 | + </div> |
| 26 | + <div> |
| 27 | + <label for="email">Email</label> |
| 28 | + <input type="email" email="email" id="email" placeholder="monsur@gmail.com" required> |
| 29 | + </div> |
| 30 | + <div> |
| 31 | + <label for="color">T-Shirt Color</label> |
| 32 | + <select name="color" id="color" required> |
| 33 | + <option value="White">White</option> |
| 34 | + <option value="Green">Green</option> |
| 35 | + <option value="Black">Black</option> |
| 36 | + </select> |
| 37 | + </div> |
| 38 | + <div> |
| 39 | + Size |
| 40 | + <div> |
| 41 | + <label for="xs">XS</label> |
| 42 | + <input type="radio" name="size" id="xs" required> |
| 43 | + |
| 44 | + </div> |
| 45 | + <div> |
| 46 | + <label for="s">S</label> |
| 47 | + <input type="radio" name="size" id="s" value="S"> |
| 48 | + </div> |
| 49 | + <div> |
| 50 | + <label for="m">M</label> |
| 51 | + <input type="radio" name="size" id="m" value="M"> |
| 52 | + |
| 53 | + </div> |
| 54 | + <div> |
| 55 | + <label for="l">L</label> |
| 56 | + <input type="radio" name="size" id="l" value="L"> |
| 57 | + |
| 58 | + </div> |
| 59 | + <div> |
| 60 | + <label for="xl">XL</label> |
| 61 | + <input type="radio" name="size" id="xl" value="XL"> |
| 62 | + |
| 63 | + </div> |
| 64 | + <div> |
| 65 | + <label for="xxl">XXL</label> |
| 66 | + <input type="radio" name="size" id="xxl" value="XXL"> |
| 67 | + |
| 68 | + </div> |
| 69 | + </div> |
| 70 | + <button type="submit">Submit</button> |
21 | 71 | </form> |
22 | 72 | </main> |
23 | 73 | <footer> |
24 | 74 | <!-- change to your name--> |
25 | | - <p>By HOMEWORK SOLUTION</p> |
| 75 | + <p>Designed with Love by Monsur Abdulrahman</p> |
26 | 76 | </footer> |
27 | 77 | </body> |
28 | 78 | </html> |
0 commit comments