Skip to content

Commit 240ecb4

Browse files
committed
feat: add T-shirt colour dropdown with 3 options
1 parent a3484fd commit 240ecb4

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

Form-Controls/index.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,13 @@ <h1>Product Pick</h1>
3636

3737
<fieldset>
3838
<legend>T-Shirt Options</legend>
39-
<!-- colour + size will go here -->
39+
<label for="colour">T‑Shirt Colour</label>
40+
<select id="colour" name="colour" required>
41+
<option value="">-- Select a colour --</option>
42+
<option value="red">Red</option>
43+
<option value="black">Black</option>
44+
<option value="white">White</option>
45+
</select>
4046
</fieldset>
4147

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

0 commit comments

Comments
 (0)