Advertisement
andruhovski

IBM demo

Sep 22nd, 2013
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.70 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  5. <title>HTML5 Web Storage</title>
  6. <style type="text/css">
  7. label,
  8. input {
  9.   display: block;
  10. }
  11. input {
  12.   margin-bottom: 10px;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <form action="post.php" method="post" id="web-storage-form">
  18.   <label for="first-name">First name:</label>
  19.   <input type="text" name="first-name" id="first-name">
  20.   <label for="last-name">Last name:</label>
  21.   <input type="text" name="last-name" id="last-name">
  22.   <label for="email-address">Email Address:</label>
  23.   <input type="text" name="email-address" id="email-address">
  24.   <input type="submit" value="Submit">
  25. </form>
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement