Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class work
- <!DOCTYPE html>
- <html lang="en-US">
- <head>
- <meta charset="utf-8">
- <title>Forms</title>
- </head>
- <body>
- <form action="response.html">
- <!--Labels for text elements are to be used in forms. There must ALWAYS be a label in the form elements.-->
- <label for="fname"> First Name:</label>
- <br>
- <input type="text" id="fname" name="fname">
- <br>
- <label for="lname"> Last Name:</label>
- <br>
- <input type="text" id="lname" name="lname">
- <br>
- <label for="pswd"> Password: </label>
- <br>
- <input type="password" id="pswd" name="pswd">
- <br>
- <input type="Submit" value="Submit">
- <input type="Reset" value="Start Over">
- </form>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement