There was an error while loading. Please reload this page.
1 parent d43171d commit 73c14b0Copy full SHA for 73c14b0
1 file changed
Form-Controls/index.html
@@ -26,16 +26,22 @@ <h1>Product Pick</h1>
26
<label for="size">
27
<span> Choose your size:</span>
28
</label>
29
- <select id="size" name="user-size">
+ <select id="size" name="user-size" required>
30
+ <option value="">--Select--</option>
31
<option value="xs">XS</option>
- <option value="small">S</option>
32
- <option value="mid">M</option>
33
- <option value="large">L</option>
+ <option value="s">S</option>
+ <option value="m">M</option>
34
+ <option value="l">L</option>
35
<option value="xl">XL</option>
36
<option value="xxl">XXL</option>
37
38
</select>
39
</p>
40
+ <p class="button">
41
+ <button type ="submit">Submit</button>
42
+ <button type="reset">Reset</button>
43
+
44
+ </p>
45
46
<!--
47
try writing out the requirements first as comments
0 commit comments