Created
April 13, 2019 01:00
-
-
Save VickiLanger/f7c2d79177e9ebe72f34956de8cb7ef1 to your computer and use it in GitHub Desktop.
contact form
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Start Contact Form --> | |
| <section class="contact-form-area"> | |
| <div class="container"> | |
| <div class="row justify-content-center"> | |
| <div class="col-lg-6"> | |
| <div class="section-title text-center"> | |
| <h2 class="text-white">Keep in Touch</h2> | |
| <p class="text-white">Most people who work in an office environment, buy computer products, or have a computer at home have had the “fun” experience of dealing </p> | |
| </div> | |
| </div> | |
| </div> | |
| <form id="myForm" action="mail.php" method="post" class="contact-form"> | |
| <div class="row justify-content-center"> | |
| <div class="col-lg-5"> | |
| <input type="text" name="fname" placeholder="Enter your name" onfocus="this.placeholder = ''" onblur="this.placeholder = 'Enter your name'" class="common-input mt-20" required> | |
| </div> | |
| <div class="col-lg-5"> | |
| <input type="email" name="email" placeholder="Enter email address" pattern="[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{1,63}$" onfocus="this.placeholder = ''" onblur="this.placeholder = 'Enter email address'" class="common-input mt-20" required> | |
| </div> | |
| <div class="col-lg-10"> | |
| <textarea class="common-textarea mt-20" name="message" placeholder="Messege" onfocus="this.placeholder = ''" onblur="this.placeholder = 'Messege'" required></textarea> | |
| </div> | |
| <div class="col-lg-10 d-flex justify-content-end"> | |
| <button class="primary-btn submit-btn d-inline-flex align-items-center mt-20"><span class="mr-10">Send Message</span><span class="lnr lnr-arrow-right"></span></button> <br> | |
| <div class="alert-msg"></div> | |
| </div> | |
| </div> | |
| </form> | |
| </div> | |
| </section> | |
| <!-- End Contact Form --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment