Skip to content

Commit c533798

Browse files
committed
feat: add T-shirt size dropdown with 6 options
1 parent 240ecb4 commit c533798

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

Form-Controls/index.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,18 @@ <h1>Product Pick</h1>
4343
<option value="black">Black</option>
4444
<option value="white">White</option>
4545
</select>
46+
47+
<label for="size">T‑Shirt Size</label>
48+
<select id="size" name="size" required>
49+
<option value="">-- Select a size --</option>
50+
<option value="xs">XS</option>
51+
<option value="s">S</option>
52+
<option value="m">M</option>
53+
<option value="l">L</option>
54+
<option value="xl">XL</option>
55+
<option value="xxl">XXL</option>
56+
</select>
57+
4658
</fieldset>
4759

4860
<button type="submit">Submit Order</button>

0 commit comments

Comments
 (0)