Contact Form Paragraph


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



Copy this code and paste it in your HTML
  1. <div id="contact-wrap">
  2.  
  3. <!-- Try putting your paragraph here -->
  4. <p>Are you ready to take your martial arts school to the next level of success? Great! Professor Gary Lee is ready to answer any questions and assist you with the enrollment process. Prof. Lee may be reached at 713-483-0476 or [email protected]. We are thrilled to have your school in the America's Best Martial Arts family. Welcome! </p>
  5.  
  6. <div id="contact-area">
  7. <?php $success_msg = get_option('pf_success_message');?>
  8. <div id="emailSuccess"><?php echo ($success_msg) ? $success_msg : "Your message was successfully sent. Thank you!";?></div>
  9. <div id="contact-form">
  10. <form action="#" id="contactform">
  11. <div>
  12. <label>Name </label><input type="text" name="name" class="textfield" id="name" value="" /><span class="require"> *</span>
  13. <label>Subject </label><input type="text" name="subject" class="textfield" id="subject" value="" /><span class="require"> *</span>
  14. <label>E-mail </label><input type="text" name="email" class="textfield" id="email" value="" /><span class="require"> *</span>
  15. <label>Message </label><textarea name="message" id="message" class="textarea" cols="2" rows="2"></textarea><span class="require"> *</span><br />
  16. <input type="submit" name="submit" class="buttoncontact" id="buttonsend" value="" />
  17. <input type="hidden" name="siteurl" id="siteurl" value="<?php bloginfo('template_directory');?>" />
  18. <span class="loading" style="display: none;">Please wait..</span>
  19. </div>
  20. </form> <!-- end #contactform -->
  21. </div> <!-- end #contact-form -->
  22. </div> <!-- end #contact-area -->
  23. </div> <!-- end #contact-wrap -->

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.