There was an error while loading. Please reload this page.
1 parent e44425b commit 719578fCopy full SHA for 719578f
1 file changed
Form-Controls/index.html
@@ -21,11 +21,16 @@ <h1>Product Pick</h1>
21
<label for="email">Email</label>
22
<input type="email" id="email" required />
23
</div>
24
-
25
- <!-- write your html here-->
26
- <!--
27
- try writing out the requirements first as comments
28
- this will also help you fill in your PR message later-->
+ <div>
+ <label for="color">Choose T-shirt color</label>
+ <select id="color" name="color" required>
+ <option value="">Select a color</option>
+ <option value="red">Red</option>
29
+ <option value="green">Green</option>
30
+ <option value="blue">Blue</option>
31
+ </select>
32
+ </div>
33
+ <div></div>
34
</form>
35
</main>
36
<footer>
0 commit comments