Advertisement
Guest User

HTML5

a guest
Mar 11th, 2015
915
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.52 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <title></title>
  4. </head>
  5. <body>
  6.  
  7. <form>
  8.     <fieldset>
  9.     <h1>Contact Form</h1>
  10.     <label for="first-name">First Name: </label>
  11.     <input type="text" name="first-name"><br>
  12.     <label for="last-name">Last Name: </label>
  13.     <input type="text" name="last-name"><br>
  14.     <label for="email">Email: </label>
  15.     <input type="text" name="email"><br>
  16.     <h4>Send us an email!</h4>
  17.     <textarea cols="30" rows="10" placeholder="Enter a message here"></textarea><br>
  18.     <input type="submit">
  19.     </fieldset>
  20. </form>
  21.  
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement