-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInternships.html
174 lines (163 loc) · 5.65 KB
/
Internships.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Opportunities - McGill Bioengineering Undergraduate Students' Society</title>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="https://use.fontawesome.com/releases/v5.0.8/js/all.js"></script>
<link href="style.css" rel="stylesheet" />
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-md navbar-light bg-light sticky-top">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">
<span>
<img
src="img/BUSS-Crest.svg"
style="height: 100px"
class="responsive"
/>
<img
src="img/BUSS-Logo.svg"
style="width: 100px; height: 100px"
class="responsive"
/>
</span>
</a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarResponsive"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link active" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="council.html">Council</a>
</li>
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
href="#"
id="navbarDropdownMenuLink"
data-toggle="dropdown"
aria-haspopup="true"
aria-expanded="false"
>
Resources
</a>
<div
class="dropdown-menu"
aria-labelledby="navbarDropdownMenuLink"
>
<a
class="dropdown-item"
href="https://drive.google.com/file/d/17HVtnoPWj_0WoyVrjVng5ag5OF-lAIxV/view?usp=sharing"
>Guidebook</a
>
<a class="dropdown-item" href="resources.html">Academic</a>
<a class="dropdown-item" href="mental.html">Mental Health</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="events.html">Events</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Getting Involved.html">
Getting Involved
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Internships.html"> Opportunities </a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container-fluid padding">
<div class="row welcome text-center">
<div class="col-md-12 col-lg-12">
<h1>Finding an Internship</h1>
</div>
</div>
<hr width="75%" />
</div>
<div class="container fluid">
<div class="row padding">
<div class="col-md-6 text-center">
<img src="img/cc_crop.jpg" class="img-fluid" />
</div>
<div class="col-md-6 padding">
<h2>SURE</h2>
<p>
The Summer Undergraduate Research in Engineering (SURE) program offers
summer research traineeships. SURE students work closely with a
McGill Engineering professor on one of their research projects for
16 weeks in the summer. The program provides exposure to the
research experience, as well as opportunities to learn more about the
graduate school experience and about careers in research. This is
also a great opportunity to apply principles learned in the
undergraduate classroom directly to the laboratory!
</p>
<div></div>
<a
href="https://www.mcgill.ca/engineering/students/undergraduate/research"
class="btn btn-primary btn-lg"
>
For More Info
</a>
</div>
</div>
</div>
<!--- Footer -->
<footer>
<div class="container-fluid padding">
<div class="row text-center">
<div class="col-md-4">
<p></p>
<img
src="img/BUSS-Crest.svg"
width="50%"
height="auto"
style="filter: grayscale(100%)"
/>
</div>
<div class="col-md-4">
<br>
<br>
<br>
<p> McGill Bioengineering </p>
<p> Undergraduate Students' Society </p>
<hr class="light" />
<p>[email protected]</p>
</div>
<div class="col-md-4">
<p></p>
<img
src="img/BUSS-Crest.svg"
width="50%"
height="auto"
style="filter: grayscale(100%)"
/>
</div>
<!---
<p align=right style= "font-size:60%">Designed by President <a href=https://www.linkedin.com/in/ameer-nizami-5b6184107/> Ameer </a> 2017-2018</p>
--->
</div>
</div>
</footer>
</body>
</html>