-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
69 lines (60 loc) · 2.59 KB
/
about.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
<!doctype html>
<html class="no-js" lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cornell University Sustainable Design</title>
<link rel="stylesheet" href="css/foundation.css">
<link rel="stylesheet" href="css/app.css">
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,300,200' rel='stylesheet' type='text/css'>
</head>
<body>
<header class="header">
<div class="medium-10 medium-offset-1 columns">
<img src="images/CUSDLogoTypeGray.svg" class="image">
<span class="site-logo-text">Cornell University<br>Sustainable Design<br>Alumni Database</span>
<div class="medium-2 columns">
<a href="about.html" class="success button">About</a><br/>
</div>
<div class="medium-2 columns">
<a href="filter.html" class="success button">Alumni</a><br/>
</div>
<div class="medium-2 columns">
<a href="" class="success button">Log Out</a><br/>
</div>
</div>
</header>
<div class="medium-12 columns">
<div class="photo-strip" style="background-image: url(images/cornell-hero.jpg)">
<div class="photo-strip__text">
<h1>About</h1>
</div>
</div>
<div class="row">
<div class="medium-10 columns medium-offset-1 columns">
<p>Welcome!</p>
<p>At CUSD we aim to provide a community in which Cornell students can develop their skills, professionally engage with the real world, and contribute to the development of communities internationally. Our organization is a diverse family of students with one common goal- to impact the global community through holistic sustainability. Through collaboration we create innovative ways to integrate technology and sustainability into community projects in a way that engages the surrounding community.</p>
</div>
</div>
<footer class="site-footer">
<div class="row">
<div class="medium-12 columns">
<div class="site-footer__social-links">
<ul>
<li><a href="https://www.facebook.com/CUSustainableDesign/?fref=ts" target="_blank">Facebook</a></li>
<li><a href="https://twitter.com/CUSD" target="_blank">Twitter</a></li>
</ul>
</div>
<div class="site-footer__copyright">
<span>© 2011–2016 Cornell University Sustainable Design</span>
</div>
</div>
</div>
</footer>
<script src="js/vendor/jquery.js"></script>
<script src="js/vendor/what-input.js"></script>
<script src="js/vendor/foundation.js"></script>
<script src="js/app.js"></script>
</body>
</html>