-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcontact.html
134 lines (133 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
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Contact | Redbud Cooperative at Von Cramm Hall</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/about.css">
<link rel="stylesheet" href="css/contact.css">
<link rel="stylesheet" href="https://use.typekit.net/ewm2fmn.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="icon" href="img/ui/icon.svg">
</head>
<body>
<div id="header">
<a href="index.html" id="logo"><img src="img/ui/vc_thumbnail_2.svg" alt=""><i>Redbud Cooperative</i></a>
<input type="checkbox" id="checkbox" class="checkbox">
<label for="checkbox" class="menu-icon"><img src="img/ui/menu.svg" alt=""></label>
<div id="links">
<a class="link" href="index.html">Home</a>
<a class="link" href="about.html">About</a>
<a class="link" href="mosey.html">Mosey</a>
<a class="link" href="gallery.html">Gallery</a>
<a class="link" href="saveplate.html">Save Plate</a>
<a class="link" href="https://forms.gle/RZyxtjqJWHnuoBUFA" target="_blank">Officer Feedback</a>
<a class="link" href="contact.html">Contact</a>
</div>
</div>
<div id="home"></div>
<div id="pageWrap">
<h1 id="title">Contact</h1>
<section class="section">
<p>Redbud Cooperative
<br>623 University Ave<br>Ithaca, NY 14850</p>
</section>
<hr>
<section class="section">
<h2>Send an email
<br><b>to <a href="mailto: [email protected]">[email protected]</a> </b>
</h2>
<div class="text">
<form action="https://formspree.io/[email protected]" method="POST" novalidate>
<input type="text" name="name" placeholder="Name" required>
<input type="email" name="_replyto" placeholder="Email" required>
<input type="text" name="subject" placeholder="Subject" required/>
<textarea name="message" placeholder="Message" required></textarea>
<input class="send" type="submit" value="Send">
</form>
</div>
</section>
<hr>
<section class="section bod">
<h2>Von Cramm, Inc. <br> Board of Directors</h2>
<div class="text">
<h3>House President</h3>
<div class="sec sec0">
<div class="person">
<h4>Jane Lin</h4>
<p>[email protected]</p>
</div>
</div>
<h3>Alumni Board Members</h3>
<div class="sec sec1">
<div class="col">
<div class="person">
<h4>Kyra Patton</h4>
<p>[email protected]</p>
</div>
<div class="person">
<h4>Jennifer Cheu</h4>
<p>[email protected]</p>
</div>
<div class="person">
<h4>Jaeda Patton</h4>
<p>[email protected]</p>
</div>
</div>
<div class="col">
<div class="person">
<h4>Aditi Kabra</h4>
<p>[email protected]</p>
</div>
<div class="person">
<h4>Nia Borden</h4>
<p>[email protected]</p>
</div>
<div class="person">
<h4>Jagravi Dave</h4>
<p>[email protected]</p>
</div>
</div>
</div>
<h3>Honorary Members</h3>
<div class="sec">
<div class="col">
<div class="person">
<h4>Name</h4>
<p>email</p>
</div>
<div class="person">
<h4>Name</h4>
<p>email</p>
</div>
</div>
<div class="col">
<div class="person">
<h4>Name</h4>
<p>email</p>
</div>
<div class="person">
<h4>Name</h4>
<p>email</p>
</div>
</div>
</div>
</div>
</section>
<hr>
</div>
<footer>
<div class="info">
<p>Copyright © Redbud 2022</p>
</div>
<div class="social">
<a href="https://www.facebook.com/pages/Von-Cramm-Hall/159855270701191" target="none">Facebook</a>
<a href="https://www.instagram.com/redbuddies4lyfe/" target="none">Instagram</a>
</div>
</footer>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="js/script.js"></script>
</body>
</html>