Skip to content

Commit 9cfc9ff

Browse files
committed
Add Size selection with 6 dropdown options
1 parent 58a44cf commit 9cfc9ff

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

Form-Controls/index.html

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,18 @@ <h1>Product Pick</h1>
4545
</fieldset>
4646

4747
<!-- T-shirt Size -->
48-
48+
<div>
49+
<label for="size">Select Size:</label>
50+
<select id="size" name="size" required>
51+
<option value="">--Select a Size--</option>
52+
<option value="XS">XS</option>
53+
<option value="S">S</option>
54+
<option value="M">M</option>
55+
<option value="L">L</option>
56+
<option value="XL">XL</option>
57+
option value="XXL">XXL</select>option>
58+
</select>
59+
</div>
4960
</form>
5061
</main>
5162
<footer>

0 commit comments

Comments
 (0)