Iyanyan

Contact html

Oct 20th, 2019
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.67 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.      <title>Contact Form Email</title>
  5.   </head>
  6.   <body>
  7.      <h1>Contact Form Email</h1>
  8.      <form action="send.php" method="post">
  9.      <p><input type="text" name="email" placeholder="Your Email" size="30" required /></p>
  10.      <p><input type="text" name="name" placeholder="Your Name" size="30" required /></p>
  11.      <p><input type="text" name="subject" placeholder="Subject" size="50" required /></p>
  12.      <p><textarea name="message" placeholder="Your Message" rows="7" cols="50" required></textarea></p>
  13.      <p><input type="submit" name="Submit" value="Submit" /> <input type="reset" value="Delete" /></p>
  14.     </form>
  15.   </body>
  16. </html>
Add Comment
Please, Sign In to add comment