-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (75 loc) · 1.92 KB
/
Copy pathindex.html
File metadata and controls
89 lines (75 loc) · 1.92 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width">
<title>Engineers Without Borders-MIT</title>
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/foundation.min.css" />
<link href="css/main.css" rel="stylesheet">
<script src="libraries/custom.modernizr.js"></script>
<!--<script type="text/javascript" src="js/main.js"></script>-->
</head>
<body>
<!-- Nav Bar -->
<nav class="top-bar" data-options="is_hover:false">
<ul class="title-area">
<li class="name">
</li>
</ul>
<section class="top-bar-section">
<ul class="nav-bar right">
<li><a href="#"> home </a></li>
<li class="divider"></li>
<li><a href="#project"> project </a></li>
<li class="divider"></li>
<li><a href="#donate"> donate </a></li>
<li class="divider"></li>
<li><a href="#about"> about </a></li>
<li class="divider"></li>
<li><a href="#contact"> contact </a></li>
</ul>
</section>
</nav>
<!-- First Band (EWB-MIT Logo) -->
<div class="row">
<div class="twelve columns">
<img src="images/ewb-logo.png">
<br>
<br>
</div>
</div>
<!-- Second Band (What We Do) -->
<div class="row">
<div class="large-12 columns">
<h1> what we do </h1>
</div>
</div>
<!-- Third Band (our projects) -->
<div class="row">
<div class="large-6 columns">
<p> pic 1 </p>
</div>
<div class="large-6 columns">
<p> pic 2 </p>
</div>
</div>
<!-- Donate -->
<div class="row">
<div class="large-6 columns">
<p> donate</p>
</div>
</div>
<!-- Set up for foundation.js -->
<!-- Check for Zepto support, load jQuery if necessary -->
<script>
document.write('<script src=libraries/'
+ ('__proto__' in {} ? 'zepto' : 'jquery')
+ '.js><\/script>');
</script>
<script src="libraries/zepto.js"></script>
<script src="libraries/foundation.min.js"></script>
<script>
$(document).foundation();
</script>
</body>
</html>