FORMS
Next project: do something with the input...
<datalist> elementThe HTML5 <datalist>
tag is used for providing an "autocomplete" feature on form elements.
It enables you to provide
a list of predefined options to the user while data is input.
The <datalist> tag can be used in conjunction with an
<input> element that contains a list attribute.
The list attribute is linked to the
<datalist> tag by the <datalist> tag's ID.
For example, if the datalist tag contains id="myData",
then the list attribute will look like this: list="myData".
You can fill the datalist element by nesting
option tags inside the datalist tag.