You can edit / change the code and click run button
x
 
1
<div>Choose a browser from this list:</div>
2
<input list="browsers">
3
<datalist id="browsers">
4
  <option value="Chrome">
5
  </option><option value="Firefox">
6
  </option><option value="Internet Explorer">
7
  </option><option value="Opera">
8
  </option><option value="Safari">
9
</option></datalist>
10
<br><br>
11
<b>Try entering some browser name in the search box</b>
12
<p>
13
  when you start giving some input in the search box it will select from the available list of options
14
</p>
15