Input
Output
<!DOCTYPE html> <html> <head><title>Country Selector</title></head> <body> <h3>Select Your Country</h3> <form> <label for="country">Country:</label> <select name="country" id="country"> <option value="india">India</option> <option value="usa">USA</option> <option value="uk">UK</option> </select> <br><br> <input type="submit" value="Submit"> </form> </body> </html>