-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
136 lines (105 loc) · 4.67 KB
/
index.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
<!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" id="hero">
<div class="col-sm-6 col-sm-offset-3 col-lg-6 col-lg-offset-3">
<div class="hero-text">
<img src="./images/landing.png" class="img-responsive hero-img"/>
<p class="center">
<a href="#more">
<i class="fa fa-angle-double-down"> </i>
</a>
</p>
</div>
</section>
<section class="row as-pre-features">
<div class="col-sm-6 col-sm-offset-3">
<h2 class="as-h-question" id="how">What is MIBS?</h2>
<hr />
</div>
</section>
<section class="row as-features">
<div class="col-sm-6 col-sm-offset-3 col-md-6 col-md-offset-3 col-lg-6 col-lg-offset-3" id="more">
<p>
Founded in September 2014 by a group of passionate students, the McGill Integrative Bioscience Society is a student association for our integrative bioscience students.
These are students who quantitatively approach the problems posed by the life sciences through the application of physical sciences.
These are students usually enrolled in the Quantitative Biology, Joint Computer Science and Biology, Joint Biology and Mathematics, Physics and Physiology and Physiology and Math programs.
Even if you aren't enrolled in these programs, but follow this philosophy you're welcome to join. </br></br>
So what do we do? We help advocate for these programs and foster an undergraduate community with those who share this philosophy.
</p>
</div>
</section>
</div>
</div>
<footer class="as-footer" style="margin-top:5%">
McGill Integrative Bioscience Society © 2019-2020
</footer>
</body>
</html>