-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
105 lines (88 loc) Β· 3.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>The Spectator Recruitments</title>
<link rel="stylesheet" type="text/css" href="css17/custom.css?v=1.1">
<link rel="stylesheet" type="text/css" href="css17/navbar.css">
<link rel="stylesheet" type="text/css" href="css17/block-revealer.css">
<!--loads the header and footer-->
<script src="js17/jquery.min.js"></script>
<script>
document.documentElement.className = 'js';
$(function(){
$("#navbar").load("navbar.html");
$("#footer").load("footer.html");
});
</script>
</head>
<!--button for "GO TO APPS" (the stylish table border one)-->
<body>
<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.1">Contact Us</a></li>
<li><a href="index.html?v=1.1">What We Do</a></li>
<li><a href="recruitments.html?v=1.1">Recruitment</a></li>
</ul>
</nav>
<div class="home-container">
<h1 class="home-title">The Stuyvesant Spectator</h1>
<hr>
<center>
<div class="home-content">
<img class="center-pic" src="http://www.stuyspec.com/wp-content/uploads/centertwo.jpg" alt="Center pic">
<p id="dates">
Recruitments are
<a id="rev-1" class="content__title__inner accented-red link">3/16</a>
and
<a id="rev-2" class="content__title__inner accented-red">3/17</a>
in the library after 10th.
</p>
<p>
The Spectator is one of Stuyvesant's most prestigious publications,
but it's much more than just an extracurricular. Spec is a family, even a way of life.
There is something for everyone, whether you're a reporter, a critic, a comedian, an artist,
a photographer, a grammar nerd, an inDesign freak or a monkey suit in the making.
If you would like to learn more about each of our departments, you have come to the right place!
</p>
</div>
</center>
</div>
<script src="js17/custom.js"></script>
<script>
//$.getJSON(filename, showContactDetails);
</script>
<script src="js17/anime.min.js"></script>
<script src="js17/scrollMonitor.js"></script>
<script src="js17/block-revealer.js"></script>
<script>
(function() {
red = '#ff0000';
setTimeout(init, 0);
function init() {
document.body.classList.remove('loading');
//************************ Example 1 - reveal on load ********************************
var rev1 = new RevealFx(document.querySelector('#rev-1'), {
revealSettings : {
bgcolor: red,
onCover: function(contentEl, revealerEl) {
contentEl.style.opacity = 1;
}
}
});
rev1.reveal();
var rev2 = new RevealFx(document.querySelector('#rev-2'), {
revealSettings : {
bgcolor: red,
delay: 250,
onCover: function(contentEl, revealerEl) {
contentEl.style.opacity = 1;
}
}
});
rev2.reveal();
}
})();
</script>
</body>
</html>