Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save kostasx/5244c8b686e808366f2573f6d71d94a3 to your computer and use it in GitHub Desktop.

Select an option

Save kostasx/5244c8b686e808366f2573f6d71d94a3 to your computer and use it in GitHub Desktop.
EventLoop | AfDEMP 4.2 Class Exercise 11
<form>
<input type="text" name="surname" placeholder="give your surname"/>
<label for="os"></label>
<select name="os" id="os">
<option value="windows">Windows</option>
<option value="mac" selected>Mac</option>
<option value="linux">Linux</option>
</select>
<label for="fruits"></label>
<select name="fruits" id="fruits" multiple size="6">
<option value="apple">apple</option>
<option value="banana">banana</option>
<option value="orange" selected>orange</option>
<option value="pear">pear</option>
<option value="blackberry">blackberry</option>
<option value="watermelon" selected>watermelon</option>
</select>
</form>
<!-- REFERENCES -->
<hr>
<h4>References:</h4>
<a target="_blank" href="https://htmlreference.io/element/select/"><strong>&lt;select&gt;</strong> at htmlreference.io</a>
<br>
<a target="_blank" href="https://htmlreference.io/element/option/"><strong>&lt;option&gt;</strong> at htmlreference.io</a>
<br>
<a target="_blank" href="https://htmlreference.io/element/label/"><strong>&lt;label&gt;</strong> at htmlreference.io</a>
<br>
<a target="_blank" href="https://htmlreference.io/element/input/"><strong>&lt;input&gt;</strong> at htmlreference.io</a>
* {
font-size: 1em;
}
a {
text-decoration: none;
}
hr {
margin: 50px auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment