Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE HTML>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>HTML5 Web Storage</title>
- <style type="text/css">
- label,
- input {
- display: block;
- }
- input {
- margin-bottom: 10px;
- }
- </style>
- </head>
- <body>
- <form action="post.php" method="post" id="web-storage-form">
- <label for="first-name">First name:</label>
- <input type="text" name="first-name" id="first-name">
- <label for="last-name">Last name:</label>
- <input type="text" name="last-name" id="last-name">
- <label for="email-address">Email Address:</label>
- <input type="text" name="email-address" id="email-address">
- <input type="submit" value="Submit">
- </form>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement