-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
171 lines (137 loc) · 5.84 KB
/
contact.html
File metadata and controls
171 lines (137 loc) · 5.84 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Neuron Template - Contact</title>
<!--
Template 2085 Neuron
http://www.tooplate.com/view/2085-neuron
-->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- Main css -->
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Lora|Merriweather:300,400" rel="stylesheet">
</head>
<body>
<!-- PRE LOADER -->
<div class="preloader">
<div class="sk-spinner sk-spinner-wordpress">
<span class="sk-inner-circle"></span>
</div>
</div>
<!-- Navigation section -->
<div class="navbar navbar-default navbar-static-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon icon-bar"></span>
<span class="icon icon-bar"></span>
<span class="icon icon-bar"></span>
</button>
<a href="index.html" class="navbar-brand">Binghamton University Data Science and Analytics</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="index.html">Home</a></li>
<li><a href="tutorials.html">Tutorials</a></li>
<li><a href="schedule.html">Schedule</a></li>
<li><a href="datathon.html">Datathon</a></li>
<li><a href="eboard.html">Executive Board</a></li>
<li class = "active"><a href="contact.html">Contact Us</a></li>
<li><a href="about.html">About Us</a></li>
</ul>
</div>
</div>
</div>
<!-- Home Section -->
<section id="home" class="main-contact parallax-section">
<div class="overlay"></div>
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12">
<h1>Contact Us</h1>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact">
<div class="container">
<div class="row">
<center>
<div class="blog-post-title">
<h3>Let us know...</h3>
</div>
<div class="blog-post-des">
<h4>If you have any questions of concerns please reach out to us at DataScience@BinghamtonSA.org</h4>
</div>
</center>
<!-- <div class="col-md-offset-1 col-md-10 col-sm-12">
<h2>Send us a message...</h2>
<p>If you would like to join our email server or have a different question/suggestion, let us know!</p>
<?php include "contactForm.php";?>
<form action="contactForm.php" method="post">
<div class="col-md-4 col-sm-4">
<input name="name" type="text" class="form-control" id="name" placeholder="Name">
</div>
<div class="col-md-4 col-sm-4">
<input name="email" type="email" class="form-control" id="email" placeholder="Email">
</div>
<div class="col-md-4 col-sm-4">
<input name="subject" type="text" class="form-control" id="subject" placeholder="Subject">
</div>
<div class="col-md-12 col-sm-12">
<textarea name="message" rows="5" class="form-control" id="message" placeholder="Message"></textarea>
</div>
<div class="col-md-3 col-sm-6">
<input name="submit" type="submit" class="form-control" id="submit" value="Send">
</div>
</form>
</div> -->
</div>
</div>
</section>
<!-- Footer Section -->
<footer>
<div class="container">
<div class="row">
<div class="col-md-5 col-md-offset-1 col-sm-6">
<h3>BUDSA</h3>
<p>A professional organization dedicated to teaching and applying skills pertaining to data science.</p>
<div class="footer-copyright">
<p>Copyright © 2017 BUDSA</p>
</div>
</div>
<div class="col-md-4 col-md-offset-1 col-sm-6">
<h3>Contact Us</h3>
<p><i class="fa fa-globe"></i> 4400 Vestal Parkway East</p>
<p><i class="fa fa-phone"></i> 339-440-2855</p>
<p><i class="fa fa-save"></i> DataScience@binghamtonsa.org</p>
</div>
<div class="clearfix col-md-12 col-sm-12">
<hr>
</div>
<div class="col-md-12 col-sm-12">
<ul class="social-icon">
<li><a href="https://www.facebook.com/BingDSA/" class="fa fa-facebook"></a></li>
<li><a href="https://github.com/budatascienceandanalytics" class="fa fa-github"></a></li>
</ul>
</div>
</div>
</div>
</footer>
<!-- Back top -->
<a href="#back-top" class="go-top"><i class="fa fa-angle-up"></i></a>
<!-- SCRIPTS -->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.parallax.js"></script>
<script src="js/custom.js"></script>
</body>
</html>