-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (93 loc) · 4.74 KB
/
index.html
File metadata and controls
116 lines (93 loc) · 4.74 KB
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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>THSPC</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<link href='http://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Michroma' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href ="css/animate.css">
<link rel="stylesheet" href="css/main.css">
<script src="js/vendor/modernizr-2.6.2-respond-1.1.0.min.js"></script>
<script type="text/javascript" src="http://www.parsecdn.com/js/parse-1.3.0.min.js"></script>
<script src ="js/main.js"></script>
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<!-- Top Page Header
<div class="jumbotron top-header">
<div class="container text-center">
<h1>THS Programming Club</h1>
<p class="code-tagline">print "What do you want to do?"</p>
</div>
</div>
<div class="container">
<!-- TODO: Add generic content below...
<hr>
<footer>
<p>© Company 2014</p>
</footer>
</div> <!-- /container -->
<div id = "mainContainer">
<span id = "mainContent1" class ="mainText animated">TENAFLY HIGH SCHOOL<br /> COMPUTER <br /> PROGRAMMING CLUB</span><br /><br />
<span id = "mainContent2" class ="mainText animated"> Unlock the future. </span>
<br /><br />
<br />
<div id = "signUp" class = "animated">
<span style = "font-size: 25px" class = "mainText"> Sign Up Now </span><br /><br />
<input type = "text" id = "name" placeholder = "Full Name" class = "textField">
<input type = "text" id = "email" placeholder = "Email Address" class = "textField"><br />
<button id = "buttonSignUp" onclick = "signUp()">Submit!</button>
</div>
<br /><br />
<span style = "font-size: 15px" class = "mainText" id= "little">Scroll for more info </span>
<br /><br />
<a href = "#infoContainer"><span class = "glyphicon glyphicon-chevron-down" id = "downArrow" ></span></a>
</div>
<div id = "infoContainer">
<h3> Meetings are on Thursdays. </h3>
<h3> Check your email for meeting reminders and for the date of the first meeting. </h3>
<h3> Meetings are held in room 145. </h3>
<h3> Laptops are limited, so bring your own if possible </h3>
<h2> Inquiries? </h2>
<h3> Contact: tenaflyprogramming@gmail.com </h3>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.11.0.min.js"><\/script>')</script>
<script src="js/vendor/bootstrap.min.js"></script>
<script src="js/main.js"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
$('document').ready(function(){
$('#mainContent1').hide().delay(1000).fadeIn('slow').addClass('zoomIn');
$('#mainContent2').hide().delay(2500).fadeIn('slow').addClass('tada');
$('#signUp').hide().delay(3000).fadeIn('slow').addClass('bounceInDown');
$('#downArrow').hide().delay(3000).fadeIn('slow').addClass('bounceInDown');
$('#little').hide().delay(3000).fadeIn('slow').addClass('bounceInDown');
$('a[href*=#]').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
&& location.hostname == this.hostname) {
var $target = $(this.hash);
$target = $target.length && $target
|| $('[name=' + this.hash.slice(1) +']');
if ($target.length) {
var targetOffset = $target.offset().top;
$('html,body')
.animate({scrollTop: targetOffset}, 1000);
return false;
}
}
});
});
</script>
</body>
</html>