|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | + <head> |
| 4 | + <meta charset="utf-8" /> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" /> |
| 6 | + <meta name="description" content="" /> |
| 7 | + <meta name="author" content="" /> |
| 8 | + <title>Clean Blog - Start Bootstrap Theme</title> |
| 9 | + <link rel="icon" type="image/x-icon" href="assets/favicon.ico" /> |
| 10 | + <!-- Font Awesome icons (free version)--> |
| 11 | + <script src="https://use.fontawesome.com/releases/v6.3.0/js/all.js" crossorigin="anonymous"></script> |
| 12 | + <!-- Google fonts--> |
| 13 | + <link href="https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic" rel="stylesheet" type="text/css" /> |
| 14 | + <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css" /> |
| 15 | + <!-- Core theme CSS (includes Bootstrap)--> |
| 16 | + <link href="css/styles.css" rel="stylesheet" /> |
| 17 | + </head> |
| 18 | + <body> |
| 19 | + <!-- Navigation--> |
| 20 | + <nav class="navbar navbar-expand-lg navbar-light" id="mainNav"> |
| 21 | + <div class="container px-4 px-lg-5"> |
| 22 | + <a class="navbar-brand" href="index.html">Start Bootstrap</a> |
| 23 | + <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation"> |
| 24 | + Menu |
| 25 | + <i class="fas fa-bars"></i> |
| 26 | + </button> |
| 27 | + <div class="collapse navbar-collapse" id="navbarResponsive"> |
| 28 | + <ul class="navbar-nav ms-auto py-4 py-lg-0"> |
| 29 | + <li class="nav-item"><a class="nav-link px-lg-3 py-3 py-lg-4" href="index.html">Home</a></li> |
| 30 | + <li class="nav-item"><a class="nav-link px-lg-3 py-3 py-lg-4" href="about.html">About</a></li> |
| 31 | + <li class="nav-item"><a class="nav-link px-lg-3 py-3 py-lg-4" href="post.html">Sample Post</a></li> |
| 32 | + <li class="nav-item"><a class="nav-link px-lg-3 py-3 py-lg-4" href="contact.html">Contact</a></li> |
| 33 | + </ul> |
| 34 | + </div> |
| 35 | + </div> |
| 36 | + </nav> |
| 37 | + <!-- Page Header--> |
| 38 | + <header class="masthead" style="background-image: url('assets/img/contact-bg.jpg')"> |
| 39 | + <div class="container position-relative px-4 px-lg-5"> |
| 40 | + <div class="row gx-4 gx-lg-5 justify-content-center"> |
| 41 | + <div class="col-md-10 col-lg-8 col-xl-7"> |
| 42 | + <div class="page-heading"> |
| 43 | + <h1>Contact Me</h1> |
| 44 | + <span class="subheading">Have questions? I have answers.</span> |
| 45 | + </div> |
| 46 | + </div> |
| 47 | + </div> |
| 48 | + </div> |
| 49 | + </header> |
| 50 | + <!-- Main Content--> |
| 51 | + <main class="mb-4"> |
| 52 | + <div class="container px-4 px-lg-5"> |
| 53 | + <div class="row gx-4 gx-lg-5 justify-content-center"> |
| 54 | + <div class="col-md-10 col-lg-8 col-xl-7"> |
| 55 | + <p>Want to get in touch? Fill out the form below to send me a message and I will get back to you as soon as possible!</p> |
| 56 | + <div class="my-5"> |
| 57 | + <!-- * * * * * * * * * * * * * * *--> |
| 58 | + <!-- * * SB Forms Contact Form * *--> |
| 59 | + <!-- * * * * * * * * * * * * * * *--> |
| 60 | + <!-- This form is pre-integrated with SB Forms.--> |
| 61 | + <!-- To make this form functional, sign up at--> |
| 62 | + <!-- https://startbootstrap.com/solution/contact-forms--> |
| 63 | + <!-- to get an API token!--> |
| 64 | + <form id="contactForm" data-sb-form-api-token="API_TOKEN"> |
| 65 | + <div class="form-floating"> |
| 66 | + <input class="form-control" id="name" type="text" placeholder="Enter your name..." data-sb-validations="required" /> |
| 67 | + <label for="name">Name</label> |
| 68 | + <div class="invalid-feedback" data-sb-feedback="name:required">A name is required.</div> |
| 69 | + </div> |
| 70 | + <div class="form-floating"> |
| 71 | + <input class="form-control" id="email" type="email" placeholder="Enter your email..." data-sb-validations="required,email" /> |
| 72 | + <label for="email">Email address</label> |
| 73 | + <div class="invalid-feedback" data-sb-feedback="email:required">An email is required.</div> |
| 74 | + <div class="invalid-feedback" data-sb-feedback="email:email">Email is not valid.</div> |
| 75 | + </div> |
| 76 | + <div class="form-floating"> |
| 77 | + <input class="form-control" id="phone" type="tel" placeholder="Enter your phone number..." data-sb-validations="required" /> |
| 78 | + <label for="phone">Phone Number</label> |
| 79 | + <div class="invalid-feedback" data-sb-feedback="phone:required">A phone number is required.</div> |
| 80 | + </div> |
| 81 | + <div class="form-floating"> |
| 82 | + <textarea class="form-control" id="message" placeholder="Enter your message here..." style="height: 12rem" data-sb-validations="required"></textarea> |
| 83 | + <label for="message">Message</label> |
| 84 | + <div class="invalid-feedback" data-sb-feedback="message:required">A message is required.</div> |
| 85 | + </div> |
| 86 | + <br /> |
| 87 | + <!-- Submit success message--> |
| 88 | + <!----> |
| 89 | + <!-- This is what your users will see when the form--> |
| 90 | + <!-- has successfully submitted--> |
| 91 | + <div class="d-none" id="submitSuccessMessage"> |
| 92 | + <div class="text-center mb-3"> |
| 93 | + <div class="fw-bolder">Form submission successful!</div> |
| 94 | + To activate this form, sign up at |
| 95 | + <br /> |
| 96 | + <a href="https://startbootstrap.com/solution/contact-forms">https://startbootstrap.com/solution/contact-forms</a> |
| 97 | + </div> |
| 98 | + </div> |
| 99 | + <!-- Submit error message--> |
| 100 | + <!----> |
| 101 | + <!-- This is what your users will see when there is--> |
| 102 | + <!-- an error submitting the form--> |
| 103 | + <div class="d-none" id="submitErrorMessage"><div class="text-center text-danger mb-3">Error sending message!</div></div> |
| 104 | + <!-- Submit Button--> |
| 105 | + <button class="btn btn-primary text-uppercase disabled" id="submitButton" type="submit">Send</button> |
| 106 | + </form> |
| 107 | + </div> |
| 108 | + </div> |
| 109 | + </div> |
| 110 | + </div> |
| 111 | + </main> |
| 112 | + <!-- Footer--> |
| 113 | + <footer class="border-top"> |
| 114 | + <div class="container px-4 px-lg-5"> |
| 115 | + <div class="row gx-4 gx-lg-5 justify-content-center"> |
| 116 | + <div class="col-md-10 col-lg-8 col-xl-7"> |
| 117 | + <ul class="list-inline text-center"> |
| 118 | + <li class="list-inline-item"> |
| 119 | + <a href="#!"> |
| 120 | + <span class="fa-stack fa-lg"> |
| 121 | + <i class="fas fa-circle fa-stack-2x"></i> |
| 122 | + <i class="fab fa-twitter fa-stack-1x fa-inverse"></i> |
| 123 | + </span> |
| 124 | + </a> |
| 125 | + </li> |
| 126 | + <li class="list-inline-item"> |
| 127 | + <a href="#!"> |
| 128 | + <span class="fa-stack fa-lg"> |
| 129 | + <i class="fas fa-circle fa-stack-2x"></i> |
| 130 | + <i class="fab fa-facebook-f fa-stack-1x fa-inverse"></i> |
| 131 | + </span> |
| 132 | + </a> |
| 133 | + </li> |
| 134 | + <li class="list-inline-item"> |
| 135 | + <a href="#!"> |
| 136 | + <span class="fa-stack fa-lg"> |
| 137 | + <i class="fas fa-circle fa-stack-2x"></i> |
| 138 | + <i class="fab fa-github fa-stack-1x fa-inverse"></i> |
| 139 | + </span> |
| 140 | + </a> |
| 141 | + </li> |
| 142 | + </ul> |
| 143 | + <div class="small text-center text-muted fst-italic">Copyright © Your Website 2023</div> |
| 144 | + </div> |
| 145 | + </div> |
| 146 | + </div> |
| 147 | + </footer> |
| 148 | + <!-- Bootstrap core JS--> |
| 149 | + <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script> |
| 150 | + <!-- Core theme JS--> |
| 151 | + <script src="js/scripts.js"></script> |
| 152 | + <!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *--> |
| 153 | + <!-- * * SB Forms JS * *--> |
| 154 | + <!-- * * Activate your form at https://startbootstrap.com/solution/contact-forms * *--> |
| 155 | + <!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *--> |
| 156 | + <script src="https://cdn.startbootstrap.com/sb-forms-latest.js"></script> |
| 157 | + </body> |
| 158 | +</html> |
0 commit comments