Created
July 2, 2021 17:24
-
-
Save crismanNoble/fe76c54e42252d6e0de87db3fd224b73 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<form> | |
<label for="zip">Zip:</label> | |
<input id="zip" name="zip"/> | |
<label for="city">City:</label> | |
<div id="city-input-wrapper"><!-- wrap the city input so we can change to a dropdown if necessary --> | |
<input id="city" name="city"/> | |
</div> | |
<label for="state">State:</label> | |
<input id="state" name="state"/> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment