turn off autocomplete css code example
Example 1: how to make html input not autofill
<input type="text" autocomplete="off" />
Example 2: input tag no suggestions
//To disable suggestions
<input autocomplete="off" />
//To enable suggestion
<input autocomplete="on" />