To remove the autocomplete dropdown that you get when using a form or an input field
To remove it from an entire form:
<form autocomplete="off">
<input type="text" name="first-field">
</form>
To remove it from a specific field only:
<form>
<input type="text" name="first-field" autocomplete="off">
</form>