-
Notifications
You must be signed in to change notification settings - Fork 0
/
recruitments.html
72 lines (58 loc) Β· 2.28 KB
/
recruitments.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
<html lang="en">
<head>
<title>Spectator Recruitments</title>
<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
<link rel="stylesheet" type="text/css" href="css17/custom.css?v=1.2">
<link rel="stylesheet" type="text/css" href="css17/navbar.css?v=1.2">
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Oswald|Catamaran" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<!--loads the header and fotter-->
<script src="js17/jquery.min.js"></script>
<script>
$(function(){
$("#navbar").load("navbar.html");
$("#footer").load("footer.html");
});
</script>
</head>
<body>
<div class="content">
<nav>
<ul class="navbar">
<li style="float:left;vertical-align:middle;"><a href="index.html"><img src="img/logo.png" alt="logo" style="height:100px;width:auto;"></a></li>
<li><a href="contact.html?v=1.2">Contact Us</a></li>
<li><a href="index.html?v=1.2">What We Do</a></li>
<li><a href="recruitments.html?v=1.2">Recruitment</a></li>
</ul>
</nav>
<div class="img-container-lg">
<center>
<h1 class="page-title">JOIN US</h1>
<h3 class="page-subtitle"><i style="color:#2ECC40">(applications are out!)</i></h3>
<img class="center-pic" src="http://www.stuyspec.com/wp-content/uploads/aepic.jpg" alt="Center pic">
</center>
</div>
<br> <br>
<table class="horizontal-bar">
<tr class="horizontal-bar-row"></tr>
</table>
<br><br>
<center class="department-previews"></center>
</div>
<script src="js17/custom.js?v=1.2"></script>
<script>
showHorizontalBar();
$.getJSON(filename, showDepartmentPreviews);
$(document).ready(function() {
$(".scrollMe").click(function() {
console.log(3);
var idToScroll = "#" + $(this).attr('data-scrollTo');
console.log(idToScroll);
$('html,body').animate({
scrollTop: $( idToScroll ).offset().top},
'slow');
});
});
</script>
</body>
</html>