autocomplete attributeThe autocomplete attribute lets web developers specify what if any permission the user agent has to provide automated assistance in filling out form field values, as well as guidance to the browser as to the type of information expected in the field.
autocomplete="on"<label for="name1">Full name</label>
<input id="name1" autocomplete="on">
autocomplete="off"<label for="name2">Full name</label>
<input id="name2" autocomplete="off">
autocomplete="name"<label for="name3">Full name</label>
<input id="name3" autocomplete="name">
autocomplete="given-name"<label for="given-name">First name</label>
<input id="given-name" autocomplete="given-name">
autocomplete="family-name"<label for="family-name">Last name</label>
<input id="family-name" autocomplete="family-name">
autocomplete="email"<label for="email">Email address</label>
<input id="email" type="email" autocomplete="email">
autocomplete="tel"<label for="phone">Phone number</label>
<input id="phone" type="tel" autocomplete="tel">
autocomplete="address-line1"<label for="address-line1">Street address</label>
<input id="address-line1" autocomplete="address-line1">
autocomplete="address-line2"<label for="address-line2">Apartment, suite, unit, etc. (optional)</label>
<input id="address-line2" autocomplete="address-line2">
autocomplete="postal-code"<label for="postal-code">Postal code</label>
<input id="postal-code" autocomplete="postal-code">
autocomplete="country"<label for="country">Country</label>
<input id="country" autocomplete="country">
autocomplete="cc-number"<label for="cc-number">Credit card number</label>
<input id="cc-number" inputmode="numeric" autocomplete="cc-number">
autocomplete="cc-exp"<label for="cc-exp">Expiration date (MM/YY)</label>
<input id="cc-exp" inputmode="numeric" autocomplete="cc-exp">
autocomplete="cc-csc"<label for="cc-csc">CVC</label>
<input id="cc-csc" inputmode="numeric" autocomplete="cc-csc">
autocomplete="fake"<label for="cc-fake">Fake</label>
<input id="cc-fake" inputmode="fake" autocomplete="fake">