|
|
The By default, the first item in the drop-down list is selected. To define a pre-selected option, add the |
<option value="fiat" selected>Fiat</option><!DOCTYPE html>
<html>
<body>
<h2>Pre-selected Option</h2>
<p>You can preselect an option with the selected attribute:</p>
<form action="/action_page.php">
<label for="cars">Choose a car:</label>
<select id="cars" name="cars">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="fiat" selected>Fiat</option>
<option value="audi">Audi</option>
</select>
<input type="submit">
</form>
</body>
</html>
Category: | Web Tutorial |
Sub Category: | HTML Form Elements |
Uploaded by: | Admin |
Read Articlehttps://develop.horje.com/learn/1434/reference