Skip to content

Instantly share code, notes, and snippets.

@mtsmfm
Created June 13, 2024 07:37
Show Gist options
  • Save mtsmfm/a57f12f80fbfbda30ebec8790d760610 to your computer and use it in GitHub Desktop.
Save mtsmfm/a57f12f80fbfbda30ebec8790d760610 to your computer and use it in GitHub Desktop.
<!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