Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>HTML Select Boxes</title> </head> <body> <label for="select">Country:</label> <select> <option>India</option> <option>Sri Lanka</option> <option>Bangladesh</option> </select> </body> </html>