Created
October 28, 2010 13:12
-
-
Save adamsilver/651307 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> | |
<h2>Post code finder</h2> | |
<div> | |
<label for="postcode">Postcode</label> | |
<input type="text" name="postcode" id="postcode" /> | |
<input type="submit" name="checkPostcode" value="Check postcode"/> | |
</div> | |
</form> | |
<form> | |
<div> | |
<label for="firstName">First name</label> | |
<input type="text" name="firstName" id="firstName" /> | |
</div> | |
<div> | |
<label for="lastName">Last name</label> | |
<input type="text" name="lastName" id="lastName" /> | |
</div> | |
<div> | |
<label for="deliveryNotes">Delivery notes</label> | |
<textarea name="deliveryNotes" id="deliveryNotes"></textarea> | |
</div> | |
<input type="submit" name="continue" value="Continue" /> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment