Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Forms in JS</title>
  6. </head>
  7. <body>
  8. <h3>User Information Form</h3>
  9.  
  10. <div class="forms">
  11. // 1. Insert form here.
  12. </div>
  13.  
  14. <style>
  15. // 2. CSS styling parameters.
  16. </style>
  17.  
  18. <script>
  19. // 3. Set values of form input fields to constants.
  20. // 4. Write function to take constant and peform an action.
  21. // 5. Add event listener to execute function.
  22. </script>
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement