Back Code Run <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <form> <label for="country">Country</label> <select id="country"> <option value="">--- Select your country ---</option> <option value="australia">Australia</option> <option value="brazil">Brazil</option> <option value="canada">Canada</option> </select> <br><br> <button type="submit" >Submit</button> </form> </body> </html> Result