-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlinks.html
176 lines (169 loc) · 6.28 KB
/
links.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
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
172
173
174
175
176
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<title>McGill Integrative Bioscience Society</title>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<!-- Latest compiled and minified CSS -->
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"
/>
<!-- FONTAWESOME -->
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css"
/>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<link
href="http://fonts.googleapis.com/css?family=Lato:300,400,700,900,700italic"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" type="text/css" href="./style.css" />
<script>
$(function() {
$('a[href*=#]:not([href=#])').click(function() {
if (
location.pathname.replace(/^\//, '') ==
this.pathname.replace(/^\//, '') &&
location.hostname == this.hostname
) {
var target = $(this.hash);
target = target.length
? target
: $('[name=' + this.hash.slice(1) + ']');
if (target.length) {
$('html,body').animate(
{
scrollTop: target.offset().top
},
1000
);
return false;
}
}
});
});
</script>
<script>
// (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
// (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
// m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
// })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
// ga('create', 'UA-66651449-1', 'auto');
// ga('send', 'pageview');
</script>
</head>
<body id="top">
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button
type="button"
class="navbar-toggle collapsed"
data-toggle="collapse"
data-target="#bs-example-navbar-collapse-1"
aria-expanded="false"
>
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">MIBS</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="./index.html#more">About</a></li>
<li><a href="./team.html">Team</a></li>
<li><a href="./faculty.html">Faculty</a></li>
<li><a href="./links.html">Links</a></li>
<li><a href="./studentguide.html">Student Guide</a></li>
<li><a href="./symposium.html">Symposium</a></li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<div class="main-content">
<div class="container-fluid">
<section class="row first-section" id="faculty">
<div class="col-md-8 col-md-offset-2">
<h2>
Find us on the web
</h2>
<hr />
<div class="social-card">
<b> McGill Integrative Bioscience Society </b><br />
<a
href="https://www.facebook.com/groups/McGillIntegrativeBioscienceSociety/"
><i class="fa fa-facebook"></i> Facebook</a
>
</div>
<div class="social-card">
<b> Quantitative Biology </b><br />
<a href="https://www.facebook.com/groups/638896479563255/"
><i class="fa fa-facebook"></i> Facebook</a
>
</div>
<div class="social-card">
<b> Joint Computer Science and Biology </b><br />
<a href="https://www.facebook.com/groups/190000274452880/"
><i class="fa fa-facebook"></i> Facebook</a
>
</div>
<div class="social-card">
<b> Joint Math and Biology </b><br />
<a href="https://www.facebook.com/groups/189828997803341/"
><i class="fa fa-facebook"></i> Facebook</a
>
</div>
<h2>
Affiliate Organizations
</h2>
<hr />
<div class="social-card">
<b> McGill Biology Students Union </b><br />
<a href="http://mbsu.sus.mcgill.ca/"
><i class="fa fa-facebook"></i> Facebook</a
>
<a href="https://www.facebook.com/groups/191673224285585/?fref=ts"
><i class="fa fa-globe"></i> Web</a
>
</div>
<div class="social-card">
<b> Computer Science Undergraduate Society </b><br />
<a href="https://www.facebook.com/myCSUS?fref=ts"
><i class="fa fa-facebook"></i> Facebook</a
>
<a href="http://mcgill-csus.github.io/"
><i class="fa fa-globe"></i> Web</a
>
</div>
<div class="social-card">
<b> Society of Undergraduate Mathematics Students </b><br />
<a href="https://www.facebook.com/sumsmcgill"
><i class="fa fa-facebook"></i> Facebook</a
>
</div>
<h2>
Sponsors
</h2>
<hr />
</div>
</section>
</div>
</div>
<footer class="as-footer" style="margin-top:5%">
McGill Integrative Bioscience Society © 2019-2020
</footer>
</body>
</html>