-
Notifications
You must be signed in to change notification settings - Fork 0
/
courses.html
153 lines (137 loc) · 4.9 KB
/
courses.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coderdojo IBM</title>
<link rel="stylesheet" href="css/reset.css" type="text/css" media="screen" />
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" />
<link rel="stylesheet" href="css/animate.css" type="text/css" media="screen" />
<link href="lightbox/css/lightbox.css" rel="stylesheet" />
<link href='http://fonts.googleapis.com/css?family=Open+Sans|Baumans' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Righteous' rel='stylesheet' type='text/css'>
<script src="js/vendor/modernizr.min.js"></script>
<script src="js/vendor/respond.min.js"></script>
<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script type="text/javascript">window.jQuery || document.write('<script type="text/javascript" src="js\/vendor\/1.7.2.jquery.min.js"><\/script>')</script>
<script src="lightbox/js/lightbox.js"></script>
<script src="js/vendor/prefixfree.min.js"></script>
<script src="js/vendor/jquery.slides.min.js"></script>
<script src="js/script.js"></script>
<!--[if lt IE 9]>
<style>
header
{
margin: 0 auto 20px auto;
}
#four_columns .img-item figure span.thumb-screen
{
display:none;
}
</style>
<![endif]-->
<script>
$(function() {
$('#slides').slidesjs({
height: 235,
navigation: false,
pagination: false,
effect: {
fade: {
speed: 400
}
},
callback: {
start: function(number)
{
$("#slider_content1,#slider_content2,#slider_content3").fadeOut(500);
},
complete: function(number)
{
$("#slider_content" + number).delay(500).fadeIn(1000);
}
},
play: {
active: false,
auto: true,
interval: 6000,
pauseOnHover: false,
effect: "fade"
}
});
});
</script>
<script>
$(document).ready(function(){
$(window).scroll(function(){
if ($(this).scrollTop() > 100) {
$('.scrollToTop').fadeIn();
} else {
$('.scrollToTop').fadeOut();
}
});
$('.scrollToTop').click(function(){
$('html, body').animate({scrollTop : 0},800);
return false;
});
});
</script>
<script>
$(function() {
$('a[href*="#"]:not([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) {
$('html, body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
});
</script>
</head>
<body>
<a href="#" class="scrollToTop">Scroll To Top</a>
<header>
<div class="toggleMobile">
<span class="menu1"></span>
<span class="menu2"></span>
<span class="menu3"></span>
</div>
<div id="mobileMenu">
<ul>
<li><a href="#">Home</a></li>
<li><a href="courses">Courses</a></li>
<li><a href="#about">About</a></li>
<li><a href="contact">Contact</a></li>
</ul>
</div>
<h1><img src="img/logoLong.png" id="logo"/></h1>
<p>Airport Business Park</p>
<nav>
<h2 class="hidden">Navigation</h2>
<ul>
<li><a href="#">Home</a></li>
<li><a href="courses">Courses</a></li>
<li><a href="#about">About</a></li>
<li><a href="contact">Contact</a></li>
</ul>
</nav>
</header>
<div id="coursesIntro"><h6 class="bounceIn animated">We have a wide variety of courses as you can see below.</h6></div>
<div id="about">
<h1>Here's a list of the courses available:</h1>
<br>
<p style="font-size:27px;"><b><a href="course/beginner">Beginner Class</a></b></p>
<br>
<p style="font-size:27px;"><b><a href="course/beginner">Minecraft Class</a></b></p>
<br>
</div>
<footer>
<center><a href="https://coderdojo.com" target="_blank"><img src="img/CD.svg"/></a></center>
</footer>
</body>
</html>