Advertisement
mattysmith22

HTML Form example

Dec 1st, 2017
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.36 KB | None | 0 0
  1. <head>
  2. </head>
  3. <body>
  4.   <title> Contact us! </title>
  5.   <form action="phpScriptToRun" method = "POST">
  6.  
  7.     Name: <input type="text" name="name"> <br>
  8.    
  9.     Email: <input type="email" name="email"> <br>
  10.    
  11.     <p>Message: </p>
  12.     <textarea rows=5 cols=20>Enter your message here</textarea> <br>
  13.    
  14.     <input type="submit" name="submit" value="Send">
  15.   </form>
  16. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement