generated from garanico/bootstrap-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
124 lines (107 loc) · 4.97 KB
/
contact.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<!--Font Awesome CSS-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!--Google Fonts CSS -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Open+Sans:wght@300&family=Pinyon+Script&display=swap" rel="stylesheet">
<!--My CSS-->
<link rel="stylesheet" href="./css/contact.css">
<title>Contact | Rachel Aranico Photography | San Diego Photographer</title>
</head>
<body>
<!--Nav Bar Start-->
<nav class="navbar navbar-light">
<a class="navbar-brand" href="index.html">
<img src="./img/rap-logo-black.png" height="56" alt="Rachel Aranico Photography Logo" loading="lazy">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExample01" aria-controls="navbarsExample01" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarsExample01">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="#">HOME <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="portfolio.html">PORTFOLIO</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">ABOUT</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">CONTACT</a>
</li>
</ul>
</div>
</nav>
<!--End of Nav Bar-->
<div class="container">
<div class="row justify-content-center">
<h1>
Get in Touch
</h1>
</div>
<div class="row">
<p>
I can’t wait to hear from you and get to know you better. Please send all inquiries through the form below and I’ll be in touch as soon as I can. Together, let’s create something magical.
</p>
</div>
<!--Contact Form-->
<div class="contact-form border border-dark">
<form>
<div class="form-group">
<label for="formGroupExampleInput">First Name</label>
<input type="text" class="form-control" id="formGroupExampleInput" placeholder="First Name">
</div>
<div class="form-group">
<label for="formGroupExampleInput2">Last Name</label>
<input type="text" class="form-control" id="formGroupExampleInput2" placeholder="Last Name">
</div>
<div class="form-group">
<label for="formGroupExampleInput2">Phone Number</label>
<input type="text" class="form-control" id="formGroupExampleInput2" placeholder="555-555-5555">
</div>
<div class="form-group">
<label for="formGroupExampleInput2">Email</label>
<input type="text" class="form-control" id="formGroupExampleInput2" placeholder="hello@rachelaranicophotography.com">
</div>
<div class="form-group">
<label for="exampleFormControlTextarea1">Tell Me About Yourself!</label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3" placeholder="The best thing you ever ate, what inspires you..."></textarea>
</div>
<button type="button" class="btn btn-outline-info">
<a href="thank.html">GET IN TOUCH</a>
</button>
</form>
</div>
<!--Footer-->
<footer>
<div class="footer top-buffer">
<ul class="links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<p class="text-center">Copyright @2021 | Designed by Grace Aranico</p>
<ul class="social-links">
<li><a href="https://www.facebook.com/rachelaranicophotography/"><i class="fa fa-facebook-f"></i></a></li>
<li><a href="https://www.instagram.com/rachelaranicophotography/"><i class="fa fa-instagram"></i></a></li>
<li><a href="http://www.linkedin.com"><i class="fa fa-linkedin"></i></a></li>
<li><a href="http://www.twitter.com"><i class="fa fa-twitter"></i></a></li>
</ul>
</div>
</footer>
<!--End Footer-->
<!-- Option 1: jQuery and Bootstrap Bundle (includes Popper) -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
</body>
</html>