Copy the following code and paste it in the source code of your web page to add a Select Menu.
<form name=""> <select name="Fruits"> <option selected>Apple</option> <option>Mango</option> <option>Banana</option> </select> <input type="submit" value="Submit"> </form>
|
Here is the result