Created
June 13, 2024 07:37
-
-
Save mtsmfm/a57f12f80fbfbda30ebec8790d760610 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<body> | |
<!-- Based on https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select --> | |
<label for="pet-select">Choose a pet:</label> | |
<select name="pets" id="pet-select" multiple> | |
<option value="">--Please choose an option--</option> | |
<option value="dog">Dog</option> | |
<option value="cat">Cat</option> | |
<option value="hamster">Hamster</option> | |
<option value="parrot">Parrot</option> | |
<option value="spider">Spider</option> | |
<option value="goldfish">Goldfish</option> | |
</select> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment