-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
77 lines (68 loc) · 3.83 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
<!doctype html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-111936547-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-111936547-1');
</script>
<meta charset="utf-8">
<title>Contact Us | Archer</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="assets/css/iconsmind.css" rel="stylesheet" type="text/css" media="all" />
<link href="assets/css/bootstrap.css" rel="stylesheet" type="text/css" media="all"/>
<link href="assets/css/theme.css" rel="stylesheet" type="text/css" media="all"/>
<link href="assets/css/navbar.css" rel="stylesheet" type="text/css" media="all"/>
<link href="assets/css/custom.css" rel="stylesheet" type="text/css" media="all"/>
<link rel="stylesheet" href="assets/css/socicon.css" type="text/css">
<link rel="icon" href="assets/img/favicon.ico"/>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
<link href='https://fonts.googleapis.com/css?family=Lato:400,400italic,700|Montserrat:400,700' rel='stylesheet' type='text/css'>
</head>
<body data-reveal-selectors="section:not(.masonry):not(:first-of-type):not(.parallax)">
<!-- load navbars -->
<nav id="top" class="hidden-sm hidden-xs"></nav>
<nav id="mobile-top" class="transition--fade transition--active visible-sm visible-xs"></nav>
<!-- end navbars -->
<section id="contact-page">
<div class="container">
<div class="row">
<div class="col-sm-6">
<h6 class="section-type-header">Contact Us</h6>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<h3>We'd love to hear from you!</h3>
<p class="lead" id="contact-details">
Contact us here if you'd like to get involved with what Archer is building. For business inquiries, feel free to email us at <a href="mailto:[email protected]">[email protected]</a>.
</p>
</div>
<div class="col-sm-6">
<form id="contact-us-form" action="https://formspree.io/[email protected]" method="POST">
<div class="flex-row">
<input id="contact-name-input" type="text" name="name" class="form-input contact-input" placeholder="Your name" required>
<input id="contact-email-input" type="email" name="_replyto" class="form-input contact-input" placeholder="Your email" required>
</div>
<textarea id="contact-content-input" name="content" class="form-input" placeholder="Your message" required></textarea>
<input class="d-none" type="text" name="_gotcha">
<button class="launch-button" type="submit">
<span id="submit-button-text">Submit</span>
</button>
</form>
</div>
</div>
</div>
</section>
<footer>
<!-- Dynamically load footer -->
</footer>
<script src="assets/js/jquery-2.1.4.min.js"></script>
<script src="assets/js/scrollreveal.min.js"></script>
<script src="assets/js/scripts.js"></script>
<script src="assets/js/site.js"></script>
</body>
</html>