Guest User

Untitled

a guest
Jun 19th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Register Form</title>
  6. </head>
  7.  
  8. <body>
  9. <h1>Register</h1>
  10.  
  11. <form>
  12. <label for="first">First Name</label>
  13. <input id="first" type="text" name="first" placeholder="John" required="name">
  14.  
  15. <label for="last">Last Name</label>
  16. <input id="last" type="text" name="last" placeholder="Smith" required="name">
  17. </form>
  18. <!--продолжение...-->
Add Comment
Please, Sign In to add comment