how to disable input suggestions html code example
Example 1: how to make html input not autofill
<input type="text" autocomplete="off" />
Example 2: input without autocomplete
<input type="text" name="foo" autocomplete="off" />
Example 3: input disable autocomplete
autocomplete="off"