Created
March 1, 2019 08:49
-
-
Save kostasx/5244c8b686e808366f2573f6d71d94a3 to your computer and use it in GitHub Desktop.
EventLoop | AfDEMP 4.2 Class Exercise 11
This file contains hidden or 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
| <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><select></strong> at htmlreference.io</a> | |
| <br> | |
| <a target="_blank" href="https://htmlreference.io/element/option/"><strong><option></strong> at htmlreference.io</a> | |
| <br> | |
| <a target="_blank" href="https://htmlreference.io/element/label/"><strong><label></strong> at htmlreference.io</a> | |
| <br> | |
| <a target="_blank" href="https://htmlreference.io/element/input/"><strong><input></strong> at htmlreference.io</a> |
This file contains hidden or 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
| * { | |
| 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