-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
131 lines (128 loc) · 5.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CoRE | Contact </title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- Favicon Start -->
<link rel="apple-touch-icon" sizes="180x180" href="favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicons/favicon-16x16.png">
<link rel="manifest" href="favicons/manifest.json">
<link rel="mask-icon" href="favicons/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="favicon.ico">
<meta name="msapplication-config" content="favicons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<!-- Favicon End -->
<link rel="stylesheet" href="semantic/dist/semantic.css" media="screen">
<link rel="stylesheet" href="assets/css/edits.css" media="screen">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
</head>
<body>
<nav class="ui borderless stackable menu">
<div class="ui container">
<a class="item" href="./index.html">
<img class="ui mini image" src="assets/images/corebot/corebot.svg">
</a>
<a class="item" href="./index.html">Home</a>
<a class="item" href="./traditions.html">Traditions</a>
<a class="item" href="./events.html">Events</a>
<a class="item" href="./history.html">History</a>
<a class="item" href="./join.html">Join</a>
<a class="item" href="./contact.html">Contact</a>
</div>
</nav>
<div class="ui container">
<div style="font-size: 18px;" class="ui container segment">
<div class="ui huge header">Contact Us</div>
<p>For more information about CoRE or if you are interested in joining CoRE, please contact the CoRE Secretary.</p>
<table class="ui large striped celled table">
<thead>
<tr>
<th>Position</th>
<th>Name</th>
<th>E-mail</th>
</tr>
</thead>
<tbody>
<tr>
<td>President</td>
<td>Sam Kustin</td>
<td>
<a class="ui button" href="mailto:[email protected]">
<i class="mail icon"></i>
Email
</a>
</td>
</tr>
<tr>
<td>Vice President</td>
<td>Michelle Tan</td>
<td>
<a class="ui button" href="mailto:[email protected]">
<i class="mail icon"></i>
Email
</a>
</td>
</tr>
<tr>
<td>Treasurer</td>
<td>Henry Burns</td>
<td>
<a class="ui button" href="mailto:[email protected]">
<i class="mail icon"></i>
Email
</a>
</td>
</tr>
<tr>
<td>Secretary</td>
<td>Mary Mahoney</td>
<td>
<a class="ui button" href="mailto:[email protected]">
<i class="mail icon"></i>
Email
</a>
</td>
</tr>
<tr>
<td>System Administrator</td>
<td>Yu Xuan Wu</td>
<td>
<a class="ui button" href="mailto:[email protected]">
<i class="mail icon"></i>
Email
</a>
</td>
</tr>
<tr>
<td>CoREtex Manager</td>
<td>Nicholas Stecyna</td>
<td>
<a class="ui center aligned button" href="mailto:[email protected]">
<i class="mail icon"></i>
Email
</a>
</td>
</tr>
<tr>
<td>Freshman Representative</td>
<td>TBD</td>
<td>
<a class="ui button" href="mailto:@binghamton.edu">
<i class="mail icon"></i>
Email
</a>
</td>
</tr>
</tbody>
</table>
<p>* Note: The Freshman Representative position is appointed to an incoming freshman by the CoRE E-Board.</p>
</div>
</div>
<br>
</body>
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="semantic/dist/semantic.min.js"></script>
</html>