-
Notifications
You must be signed in to change notification settings - Fork 0
/
join.html
95 lines (81 loc) · 3.84 KB
/
join.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="MINT is UBC BEST's Neurotechnology focused student project. We aim to bridge clinical and social aspects of neuroscience by accessibly reproducing and innovating upon notable experiments and technologies">
<meta name="author" content="">
<!--logo here-->
<link rel="shortcut icon" href="">
<link rel="icon" href="./img/main-page/mint-logo.png">
<title>UBC MINT - Home</title>
<!-- Specific CSS -->
<link href="style.css" rel="stylesheet">
<!-- Bootstrap Core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
<link href="vendor/simple-line-icons/css/simple-line-icons.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/stylish-portfolio.min.css" rel="stylesheet">
</head>
<!-- Navigation -->
<nav class="navbar fixed-top navbar-expand-lg navbar-light bg-white h-80">
<a class="navbar-brand" href="./index.html">
<!--logo here-->
<img src="./img/main-page/mint-logo.png" width="60" height="55" class="d-inline-block align-top" alt="">
</a>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto"></ul>
<form class="form-inline my-2 my-lg-0">
<a class="nav-link" href="./index.html">Home</a>
<a class="nav-link" href="./about.html">About</a>
<a class="nav-link" href="./projects.html">Projects</a>
<a class="nav-link" href="./join.html">Get Involved</a>
<a class="nav-link" href="./learn.html">Learn</a>
</form>
</div>
</nav>
<section class="content-section">
<div class="container">
<div class="content-section-heading text-center">
<h3 class="text-secondary mb-0">Interested?</h3>
<h2 class="mb-5">Get Involved!</h2>
</div>
<div class="text-center">
<p class="mb-4">Not currently hiring! Check in again soon for more positions! Follow our social media for updates and announcements!</p>
<img src="./img/main-page/IMG_0912.jpeg" class="d-inline-block align-top mb-5" style="max-width: 75%; height: auto;">
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer text-center">
<div class="container">
<ul class="list-inline mb-5">
<li class="list-inline-item">
<a class="social-link rounded-circle text-white mr-3" href="https://www.youtube.com/channel/UCpHp7AX9HL-IaWA_cNBpzqA/playlists">
<i class="icon-social-youtube"></i>
</a>
</li>
<li class="list-inline-item">
<a class="social-link rounded-circle text-white mr-3" href="https://github.com/UBCMint">
<i class="icon-social-github"></i>
</a>
</li>
<li class="list-inline-item">
<a class="social-link rounded-circle text-white mr-3" href="https://www.instagram.com/ubcmint/">
<i class="icon-social-instagram"></i>
</a>
</li>
<li class="list-inline-item">
<a class="social-link rounded-circle text-white mr-3" href="https://www.linkedin.com/company/ubc-mint/mycompany/">
<i class="icon-social-linkedin"></i>
</a>
</li>
</ul>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></a></p>
<p class="text-muted small mb-0">See any problems, or have some feedback? <a href="mailto:[email protected]">Let us know!</a></p>
</div>
</footer>
</html>