Created
September 14, 2016 20:06
-
-
Save aarongustafson/a1360be98984e247ef10c27981229c39 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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