<!DOCTYPE html>
<html>
<body>
<h1>The select autofocus attribute</h1>
<p>The autofocus attribute specifies that the drop-down list should automatically get focus when the page loads:</p>
<form action="/action_page.php">
<label for="cars">Choose a car:</label>
<select name="cars" id="cars" autofocus>
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="opel">Opel</option>
<option value="audi">Audi</option>
</select>
<br><br>
<input type="submit" value="Submit">
</form>
<p><strong>Note:</strong> The autofocus attribute of the select tag is not supported in Firefox.</p>
</body>
</html>