Skip to content

Commit 6c25d04

Browse files
Add size selection options to the form in index.html
1 parent ece897d commit 6c25d04

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

‎Form-Controls/index.html‎

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,16 @@ <h1>Product Pick</h1>
4949
<legend>Choose a Size</legend>
5050

5151
<label>Size</label>
52-
<select id="size" name="size" required>Select a Size</select>
53-
52+
<select id="size" name="size" required>
53+
<option value="" disabled selected>Select a Size</option>
54+
<option value="XS">XS</option>
55+
<option value="S">S</option>
56+
<option value="M">M</option>
57+
<option value="L">L</option>
58+
<option value="XL">XL</option>
59+
<option value="XXL">XXL</option>
60+
61+
</select>
5462

5563

5664

0 commit comments

Comments
 (0)