Input
Output
<html> <body> <form> <label for="country">Choose your country:</label> <select id="country" name="country"> <option value="india">India</option> <option value="usa">USA</option> <option value="uk">UK</option> </select> </form> </body> </html>