Skip to content

Commit 587c1c7

Browse files
committed
Added <select> for colour and size as comment
1 parent 7758364 commit 587c1c7

1 file changed

Lines changed: 19 additions & 2 deletions

File tree

Form-Controls/index.html

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,11 @@ <h1>Product Pick</h1>
3333
/>
3434
</div>
3535

36-
3736
<div>
3837
<label for="email">Email Address</label>
3938
<input id="email" name="email" type="email" required />
4039
</div>
41-
40+
4241
<fieldset>
4342
<legend>Colour Choice</legend>
4443
<label>
@@ -57,6 +56,14 @@ <h1>Product Pick</h1>
5756
</label>
5857
</fieldset>
5958

59+
<!--<label for="colour">Colour Choice</label>
60+
<select id="colour" name="colour" required>
61+
<option value="">Select Your Colour</option>
62+
<option value="Burgundy"></option>
63+
<option value="Purple"></option>
64+
<option value="Yellow"></option>
65+
</select>-->
66+
6067
<fieldset>
6168
<legend>Size Choice</legend>
6269
<label>
@@ -86,6 +93,16 @@ <h1>Product Pick</h1>
8693
XXL
8794
</label>
8895
</fieldset>
96+
<!--<label for="size">T-shirt Size Choice</label>
97+
<select id="size" name="size" required>
98+
<option value="">Select Your Size</option>
99+
<option value="XS"></option>
100+
<option value="S"></option>
101+
<option value="M"></option>
102+
<option value="L"></option>
103+
<option value="XL"></option>
104+
<option value="XXL"></option>
105+
</select>-->
89106

90107
<button type="submit">Place Your Order</button>
91108
</form>

0 commit comments

Comments
 (0)