Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

html select box

<!DOCTYPE html>
<html>
<body>
    <h3>Example of a Select Box</h3>
    <form>
        <label for="country">Country:</label>
        <select name="country" id="country">
            <option value="India">India</option>
            <option value="Sri Lanka">Sri Lanka</option>
            <option value="Australia">Australia</option>
        </select>
    </form>
</body>
</html>
Source by www.geeksforgeeks.org #
 
PREVIOUS NEXT
Tagged: #html #select #box
ADD COMMENT
Topic
Name
1+4 =