Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 20th, 2012  |  syntax: None  |  size: 0.41 KB  |  hits: 6  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <form action="demo_form.asp" autocomplete="on">
  6.   First name:<input type="text" name="fname" /><br />
  7.   Last name: <input type="text" name="lname" /><br />
  8.   E-mail: <input type="email" name="email"  /><br />
  9.   ID Number:  <input placeholder="enter your 5 digit id number" type="text" name="idNumber" pattern="[0-9]{5}" /><br />
  10.  
  11.  
  12.   <input type="submit" />
  13.  
  14.  
  15. </form>
  16.  
  17.  
  18. </body>
  19. </html>