Menu
×
×
Correct!
Exercise:1. Create two radio buttons and place them inside the form element, under the text "Favorite color". 2. Add the name attribute with a value of "color" to both radio buttons. 3. Also add a value attribute and specify "blue" for the first and "red" for the second. 4. Lastly, specify some text that corresponds with the values. Hint: <input type="radio" name="color" value="blue">Blue. |
Edit This Code:
Result:
|
Correct Code:
Result:
|