Guest User

Untitled

a guest
Jan 23rd, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. <form action="" method="" role="form">
  2. <fieldset>
  3. <legend>Your Contact Info</legend>
  4. <div>
  5. <label for="first-name" title="First Name"><span>F</span>irst name</label>
  6. <input accesskey="f" autofocus id="first-name" name="first-name" role="input" tabindex="1" type="text">
  7. </div>
  8. <div>
  9. <label for="last-name" title="Last Name"><span>L</span>ast name</label>
  10. <input accesskey="l" id="last-name" name="last-name" role="input" tabindex="2" type="text">
  11. </div>
  12. <div>
  13. <label for="phone" title="Phone"><span>P</span>hone</label>
  14. <input accesskey="p" id="phone" maxlength="10" name="phone" placeholder="8004156309" role="input" tabindex="3" type="text">
  15. </div>
  16. <div>
  17. <label for="email" title="Email"><span>E</span>mail</label>
  18. <input accesskey ="e" id="email" name="email" role="input" tabindex="4" type="text">
  19. </div>
  20. </fieldset>
  21. <fieldset>
  22. <legend>Your Location</legend>
  23. <div>
  24. <label for="address" title="Address"><span>A</span>ddress</label>
  25. <input accesskey="a" id="address" name="address" role="input" tabindex="5" type="text">
  26. <label for="address-2" title="Address line 2">A<span>d</span>dress line 2</label>
  27. <input accesskey="d" id="address-2" name="address-2" placeholder="(optional) P.O. Box, Apt. #, etc." role="input" tabindex="6" type="text">
  28. </div>
  29. <div>
  30. <label for="city" title="City"><span>C</span>ity</label>
  31. <input accesskey="c" id="city" name="city" role="input" tabindex="7" type="text">
  32. </div>
  33. <div>
  34. <label for="state" title="State"><span>S</span>tate</label>
  35. <input accesskey="s" id="state" maxlength="2" name="state" role="input" tabindex="8" type="text">
  36. </div>
  37. <div>
  38. <label for="zip-code" title="Zip Code" ><span>Z</span>ip code</label>
  39. <input accesskey="z" id="zip-code" maxlength="5" name="zip-code" tabindex="9" type="text">
  40. </div>
  41. </fieldset>
  42. <div>
  43. <input accesskey="u" type="submit" role="button" tabindex="10" value="submit">
  44. <a href="#" title="cancel">Cancel</a>
  45. </div>
  46. </form>
Add Comment
Please, Sign In to add comment