Advertisement
Guest User

Untitled

a guest
Feb 25th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. <html>
  2. <head>
  3.  
  4. <title> form </title>
  5.  
  6. </head>
  7.  
  8. <body>
  9.  
  10. <form method="post" action=""> <!-- action is to determine the process that is used to send information from client to server , method is either post or get-->
  11.  
  12. <p><h1> Feedback Form </h1> </p>
  13. <p><strong>please fill out this form to help</strong></p>
  14. <!-- input has 4 attributes : name / type *most important* , text or password , we can use type password to show text as stars / size / maxlength-->
  15. <label> Name: </label>
  16. <input name="name" type="password" size="25" maxlength="30"/> <br>
  17. <input type="submit" value="Enter"/> <!-- we use value with button, not with text, button is either submit or reset-->
  18. <input type="reset" value="Clear"/>
  19.  
  20. </form>
  21.  
  22. </body>
  23.  
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement