-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
executable file
·173 lines (157 loc) · 8.67 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html>
<!-- Basic Page Needs––––––––––––––––––––––––––– -->
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Contact page for Jessie Houghton's portfolio website." />
<meta name="keywords" content="Contact, Computer Science, Artwork, UX design, UI design, Graphic Design, Digital
Illustration, Logo Design" />
<meta name="author" content="Jessie Houghton" />
<title>Jessie | Contact</title>
<!-- Bootstrap Core CSS ––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous" />
<!-- Custom CSS ––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/selectors.css">
<!-- Fontawesome ––––––––––––––––––––––––––– -->
<script src="https://kit.fontawesome.com/5c9f2dfb26.js"></script>
<!-- Favicon––––––––––––––––––––––––––– -->
<link rel="icon" type="image/x-icon" href="img/favicon.ico" />
</head>
<body>
<!-- Navigation Bar -->
<div class="container-fluid">
<div class="row">
<nav class="navbar navbar-expand-sm navbar-light">
<!-- Brand -->
<a class="navbar-brand" href="index.html">
<img alt="logo" width="50" height="50" src="img/menu_bar_logo.svg" />
</a>
<!-- Toggler/collapsibe Button -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="galleries.html">Galleries</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="#">Contact</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
<!-- Body Content -->
<div class="container mt-4">
<div class="row">
<div class="col-sm-12">
<h1>Contact</h1>
<div class="contact">
<h2>Let's work together!</h2>
<!-- -->
<form action="https://formspree.io/f/xeqpzreo" method="POST" class="needs-validation" novalidate>
<div class="form-group row">
<label for="name" class="col-sm-2 col-form-label">Name</label>
<div class="col-sm-10">
<input type="text" name="text" class="form-control" id="name" placeholder="Your name" required>
<div class="valid-feedback">Valid.</div>
<div class="invalid-feedback">Please fill out this field.</div>
</div>
</div>
<div class="form-group row">
<label for="inputEmail3" class="col-sm-2 col-form-label">Email</label>
<div class="col-sm-10">
<input type="email" name="email" class="form-control" id="inputEmail3" placeholder="Your email" required>
<div class="valid-feedback">Valid.</div>
<div class="invalid-feedback">Please fill out this field.</div>
</div>
</div>
<div class="form-group row">
<label for="subject" class="col-sm-2 col-form-label">Subject</label>
<div class="col-sm-10">
<input type="text" name="text" class="form-control" id="subject" placeholder="Project X" required>
<div class="valid-feedback">Valid.</div>
<div class="invalid-feedback">Please fill out this field.</div>
</div>
</div>
<div class="form-group row">
<label for="inputMessage" class="col-sm-2 col-form-label">Message</label>
<div class="col-sm-10">
<textarea class="form-control" name="message" rows="10" cols="50" placeholder="Your message:" required></textarea>
<div class="valid-feedback">Valid.</div>
<div class="invalid-feedback">Please fill out this field.</div>
</div>
</div>
<div class="form-group row justify-content-center">
<div class="col-auto">
<button type="submit" class="btn btn-primary">Submit</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<!--
<h2>Name</h2>
<h2>Email</h2>
<h2>Subject</h2>
<h2>Message</h2>
<h2>Submit</h2>
-->
<!--footer-->
<footer>
<div class="container-fluid align-items-center text-center">
<div class="row">
<div class="col-sm-12">
<hr>
<div class="social_icons">
<a href="https://github.com/houghj16" target="_blank"><img src="img/github.svg" alt="Github"></a>
<a href="https://www.facebook.com/jessie.houghton.372" target="_blank"><img src="img/facebook.svg" alt="Facebook"></a>
<a href="https://www.linkedin.com/in/jessica-houghton-336403169/" target="_blank"><img src="img/linkedin.svg" alt="LinkedIn"></a>
<a href="mailto:[email protected]"><img src="img/envelope.svg" alt="Email"></a>
</div>
</div>
<div class="col-sm-12">
<p>Made with ❤ in Ann Arbor, Michigan.<br>
Copyright © 2020 Jessie Houghton. All rights reserved.</p>
</div>
</div>
</div>
</footer>
<!--end of footer-->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script>
// Disable form submissions if there are invalid fields
(function() {
'use strict';
window.addEventListener('load', function() {
// Get the forms we want to add validation styles to
var forms = document.getElementsByClassName('needs-validation');
// Loop over them and prevent submission
var validation = Array.prototype.filter.call(forms, function(form) {
form.addEventListener('submit', function(event) {
if (form.checkValidity() === false) {
event.preventDefault();
event.stopPropagation();
}
form.classList.add('was-validated');
}, false);
});
}, false);
})();
</script>
</body>
</html>