HTML - Select
simple select code
<form> <p>Select a fruit:</p> <select name="Fruit"> <option>Apples</option> <option>Bananas</option> <option>Oranges</option> </select> </form> |
This is how it will appear in a browser |
View above example output in a new browser window |