-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjoinus.html
97 lines (79 loc) · 3.07 KB
/
joinus.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
<!DOCTYPE HTML>
<!-- -->
<html>
<head>
<title>Raj Lab - [Join Us]</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Favicon -->
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon">
<!-- D3 -->
<script src="https://d3js.org/d3.v5.min.js"></script>
<!-- <script src="https://d3js.org/d3.v4.min.js"></script> -->
<!-- Local Scripts -->
<script src="./assets/js/jquery.min.js"></script>
<!-- Icons -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.1/css/all.css" integrity="sha384-gfdkjb5BdAXd+lj+gudLWI+BXq4IuLW5IT+brZEZsLFm++aCMlF1V92rMkPaX4PP"
crossorigin="anonymous">
<!--CSS-->
<link href="./assets/css/arrow_bounce.css" rel="stylesheet" type="text/css" />
<link href="./assets/css/main.css" rel="stylesheet" type="text/css" />
<!-- Bootstrap-->
<script src="./assets/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="./assets/css/bootstrap.min.css" />
</head>
<body>
<!-- Insert html files -->
<script>
$(function(){
$("#background_video").load("./background_video.html");
$("#footer").load("./footer.html");
$("#navbar").load("./navbar.html");
});
</script>
<!-- Video -->
<section id="background_video"></section>
<!-- Navbar -->
<section id="navbar"></section>
<!-- Footer -->
<section id="main">
<!-- Opportunities -->
<div class="inner">
<header>
<h1><i class="fas fa-handshake"></i> Opportunities</h1>
</header>
<p>We're looking for postdoctoral fellows, data scientist and statistical geneticists to work on NIH-funded research using computational approaches to identify drivers of Alzheimer’s and Parkinson’s disease. Please email us below for more information!
</p>
</div>
<br>
<br>
<!-- Contact Us -->
<div class="inner">
<h1><i class="fas fa-envelope-open"></i> Contact Us</h1>
<p>Interested in learning more about our work? Inquiring about research positions?
<br>Feel free to send us an email via the form below (addressed to Dr. Towfique Raj).</p>
<br><br>
<iframe class="GoogleForm" src="https://docs.google.com/forms/d/e/1FAIpQLSciYMVblIS4BACTcuUHmQL5JZa21w0M7NZ-9z4MHOCLu7QnYQ/viewform?embedded=true" width="100%" height="800" frameborder="0" marginheight="0" marginwidth="0">Loading...</iframe>
<!-- <form method="post" action="./assets/php/contactengine.php" id="contactUs">
<div class="field half first">
<label for="Name">Name:</label>
<input type="text" name="Name" id="Name" />
</div>
<div class="field half first">
<label for="Email">Email:</label>
<input type="text" name="Email" id="Email" />
</div>
<label for="Subject">Subject:</label>
<input type="text" name="Subject" id="Subject" />
<label for="Message">Message:</label><br />
<textarea name="Message" rows="4" id="Message" placeholder=". . ."></textarea>
<ul class="actions">
<li><input type="submit" value="Submit" class="alt" /></li>
</ul>
</form> -->
</div>
</section>
<!-- Footer -->
<section id="footer"></section>
</body>
</html>