Skip to content

Instantly share code, notes, and snippets.

@aarongustafson
Created September 14, 2016 20:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aarongustafson/a1360be98984e247ef10c27981229c39 to your computer and use it in GitHub Desktop.
Save aarongustafson/a1360be98984e247ef10c27981229c39 to your computer and use it in GitHub Desktop.
<p>
<label for="as">What’s your street address?</label>
<textarea id="as" name="as" rows="3" required aria-required="true" autocomplete="shipping street-address" autocapitalize="on" autocorrect="off"></textarea>
</p>
<p>
<label for="ap">What’s the postal code for this address?</label>
<input id="ap" name="ap" required aria-required="true" autocorrect="off" autocomplete="shipping postal-code" autocapitalize="on" placeholder="10001">
</p>
<p>
<label for="ac">What country is that in?</label>
<input id="ac" name="ac" required aria-required="true" autocomplete="shipping country-name" autocorrect="off" autocapitalize="on">
</p>
<p>
<label for="al">What city or town is that?</label>
<input id="al" name="al" required aria-required="true" autocomplete="shipping address-level2" autocorrect="off" autocapitalize="on">
</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment