-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
85 lines (74 loc) · 4.62 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>Contact - Greater Lafayette DSA</title>
<meta property="og:type" content="website">
<meta property="og:image" content="../assets/img/logo-dsa-br-transparent.png">
<meta name="description" content="Get in touch with GLDSA">
<link rel="stylesheet" href="/assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat:400,400i,700,700i,600,600i">
<link rel="stylesheet" href="/assets/css/Manifold%20DSA.css">
<link rel="stylesheet" href="/assets/css/Manifold%20DSA%20Demi.css">
<link rel="stylesheet" href="/assets/css/Manifold%20DSA%20Extra.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Permanent+Marker">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto+Slab">
<link rel="stylesheet" href="/assets/fonts/ionicons.min.css">
<link rel="stylesheet" href="/assets/css/Footer-Basic.css">
<script src="https://code.iconify.design/2/2.0.3/iconify.min.js"></script>
</head>
<body>
<div id="navigation"></div>
<main class="page faq-page">
<section class="clean-block clean-faq dark">
<div class="container">
<div class="block-heading navbar-buffer">
<h2 style="color: #ec1f27;font-family: 'Manifold DSA Extra';">Get In Touch</h2>
</div>
<div class="row justify-content-center">
<!--Contact DSA Card-->
<div class="col-md-6 col-lg-4">
<div class="card"><a href="/contact/contact-form.html"><img class="card-img-top w-100 d-block" src="/assets/img/strike.png"></a>
<div class="card-body">
<h4 class="card-title" style="font-family: 'Manifold DSA Extra';">Got a question about GLDSA?</h4>
<p class="card-text" style="font-family: 'Manifold DSA';">For all inquiries about what GLDSA is, what we stand for, or other questions about the organization can be asked here!</p>
</div>
<div style="height: 50px; text-align: center; margin:auto;">
<a class="btn btn-outline-primary btn-sm" role="button" href="/contact/contact-form.html" style="color: #ec1f27;border-color: #ec1f27;font-family: 'Manifold DSA';">Contact us!</a>
</div>
</div>
</div>
<!--Follow DSA Card-->
<div class="col-md-6 col-lg-4">
<div class="card"><img class="card-img-top w-100 d-block" src="/assets/img/hashtag.png">
<div class="card-body">
<h4 class="card-title" style="font-family: 'Manifold DSA Extra';">Follow GLDSA on Social Media!</h4>
<p class="card-text" style="font-family: 'Manifold DSA';">Keep up to date with all our campaigns, fundraisers and more on our Facebook, Twitter and Instagram!<br/>
</p>
</div>
<div style="height: 50px; text-align: center; margin:auto; margin-bottom: 22px;">
<a style="align-items: center; " href="https://twitter.com/lafayettein_dsa"><span class="iconify" data-icon="ion:logo-twitter" style="color: red;" data-width="55"></span></a>
<a style="align-items: center;" href="https://www.facebook.com/GreaterLafayetteDSA"><span class="iconify" data-icon="ion:logo-facebook" style="color: red;" data-width="55"></span></a>
<a style="align-items: center;" href="https://www.instagram.com/greaterlafayettedsa/"><span class="iconify" data-icon="ion:logo-instagram" style="color: red;" data-width="55"></span></a>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<div id="footer"></div>
<script src="/assets/js/jquery.min.js"></script>
<script src="/assets/bootstrap/js/bootstrap.min.js"></script>
<script src="/assets/js/theme.js"></script>
<script>
$(function() {
$("#navigation").load("/assets/modules/navbar.html");
});
$(function() {
$("#footer").load("/assets/modules/footer.html");
});
</script>
</body>
</html>