<!DOCTYPE html> <html lang= "es" > <head> <meta charset= "UTF-8" > <title> Autocomplete HTML5 </title> </head> <body> <label> Enter your favorite movies: <br/> <input type= "text" name= "movies" list= "movies" /> <datalist id= "movies" > <select name= "movies" > <option value= "Star Wars" > <option value= "The Godfather" > <option value= "Goodfellas" > </select> </datalist> </label> </body> </html>