Contact Form - HTML


/ Published in: HTML
Save to your folder(s)

Contact Form in HTML
- without CSS
- html 4 compatibility


Copy this code and paste it in your HTML
  1. <form action="" method="post" class="">
  2. <h1>Contact Form
  3. <span>Please fill all field</span>
  4. </h1>
  5. <span>Your Name :</span>
  6. <input type="text" id="name" name="name"/>
  7. </label>
  8. <span>Your Email :</span>
  9. <input type="text" id="email" name="email"/>
  10. </label>
  11. <span>Message :</span>
  12. <input type="text" id="message" name="message"/>
  13. </label>
  14. <span>subject</span>
  15. <select name="subject" id="">
  16. <option value="question">question</option>
  17. <option value="suggest">suggest</option>
  18. </select>
  19. </label>
  20. <span>&nbsp;</span>
  21. <input type="button" value="send" />
  22. </label>
  23. </form>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.