Skip to content

Commit bc9a539

Browse files
author
AlanGit-debug2604
committed
Add size dropdown requiring selection with 6 options
1 parent 4b70862 commit bc9a539

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

Form-Controls/index.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,16 @@ <h1>Product Pick</h1>
2727
<input type="radio" name="colour" id="Blue" value="Blue" required />
2828
<label for="Blue">Blue</label>
2929
<!-- Size 6 options: XS, S, M, L, XL, XXL-->
30+
<label for="size">What size do you need?</label>
31+
<select id="size" required>
32+
<option value="">-- Select a size --</option>
33+
<option value="XS">XS</option>
34+
<option value="S">S</option>
35+
<option value="M">M</option>
36+
<option value="L">L</option>
37+
<option value="XL">XL</option>
38+
<option value="XXL">XXL</option>
39+
</select>
3040
</form>
3141
</main>
3242
<footer>

0 commit comments

Comments
 (0)