Menu
×
×
Correct!
Exercise:In the form below, add two option elements to the drop down list. The first option must have the value "Volvo"
<form action="/action_page.php">
<select name="cars"> <@(20)>Volvo</@(6)> <@(19)>Ford</@(6)> </select> </form>
<form action="/action_page.php">
<select name="cars"> <option value="Volvo">Volvo</option> <option value="Ford">Ford</option> </select> </form>
<form action="/action_page.php">
<select name="cars"> <option value='Volvo'>Volvo</option> <option value='Ford'>Ford</option> </select> </form> Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 90 exercises.
Are you sure you want to continue?