There was an error while loading. Please reload this page.
1 parent 4b959c7 commit 554671eCopy full SHA for 554671e
1 file changed
Form-Controls/index.html
@@ -33,6 +33,24 @@ <h1>Product Pick</h1>
33
placeholder="Enter your email address"
34
/>
35
</div>
36
+ <div>
37
+ <label for="red">Red</label>
38
+ <input type="radio" name="colour" id="red" value="Red">
39
+ <label for="blue">Blue</label>
40
+ <input type="radio" name="colour" id="blue" value="Blue">
41
+ <label for="green">Green</label>
42
+ <input type="radio" name="colour" id="green" value="Green">
43
+ </div>
44
45
+ <label for="size">T-shirt Size</label>
46
+ <select name="colour" id="colour">
47
+ <option value="XS">XS</option>
48
+ <option value="S">S</option>
49
+ <option value="M">M</option>
50
+ <option value="L">L</option>
51
+ <option value="XL">XL</option>
52
+ <option value="XXL">XXL</option>
53
54
</form>
55
</main>
56
<footer>
0 commit comments