Advertisement
Pavle_nis

Contact HTML

Apr 3rd, 2017
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.60 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.   <meta charset="UTF-8">
  5.   <title>Document</title>
  6.   <link rel="stylesheet" type="text/css" href="style.css">
  7. </head>
  8. <body>
  9. <div id="tf-contact">
  10.         <div class="container">
  11.             <div class="section-title">
  12.                 <h3>Contact Me</h3>
  13.                 <p>Cras sit amet nibh libero, in gravida nulla. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis.</p>
  14.                 <hr>
  15.             </div>
  16.  
  17.             <div class="space"></div>
  18.  
  19.             <div class="row">
  20.                 <div class="col-md-6 col-md-offset-3">
  21.                     <form id="contact">
  22.                       <div class="form-group">
  23.                         <input type="email" class="form-control" id="exampleInputEmail1" placeholder="Enter Name">
  24.                       </div>
  25.                       <div class="form-group">
  26.                         <input type="password" class="form-control" id="exampleInputPassword1" placeholder="Enter Email">
  27.                       </div>
  28.                       <div class="form-group">
  29.                         <input type="email" class="form-control" id="exampleInputEmail1" placeholder="Enter Website">
  30.                       </div>
  31.                       <div class="form-group">
  32.                         <textarea class="form-control" rows="4" placeholder="Message"></textarea>
  33.                       </div>
  34.                       <button type="submit" class="btn btn-primary my-btn dark">Submit</button>
  35.                     </form>
  36.                 </div>
  37.             </div>
  38.         </div>
  39.     </div>
  40. </body>
  41. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement