-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcredits.html
89 lines (71 loc) · 3.68 KB
/
credits.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- Force IE to use its standard document rendering mode - I found this line at https://stackoverflow.com/questions/10975107/forcing-internet-explorer-9-to-use-standards-document-mode -->
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width">
<title>Credits | Jschool</title>
<link type="text/css" rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="images/js-icon.png" type="image/x-icon">
</head>
<body>
<header>
<!-- Page header containing logo/site title, with a navigation bar
nested inside of it-->
<a href="index.html"><h1 id="header-logo">Jschool</h1></a>
<!-- navigation bar in the semantically nice nav element -->
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="index.html#tutorial-section">Tutorials</a></li>
<li><a href="quizzes.html">Quizzes</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
</header>
<section class="lead">
<h1>Credits</h1>
<p>Jschool uses the following open source libraries/components/reference sources and is eternally grateful...</p>
</section>
<section id="scrolling-credits">
<div>
<!-- Arranged in no particular order, other than to create a nice pyramid-ish shape ∆ -->
<p><a href="https://jquery.com/" target="_blank">jQuery</a></p>
<p><a href="http://requirejs.org/" target="_blank">RequireJS</a></p>
<p><a href="https://highlightjs.org/" target="_blank">highlight.js</a></p>
<p><a href="https://gist.github.com/Fluidbyte/4718380" target="_blank">SimpleStore.js</a></p>
<p><a href="https://fortawesome.github.io/Font-Awesome/" target="_blank">FontAwesome</a></p>
<p><a href="http://meyerweb.com/eric/tools/css/reset/" target="_blank">Meyerweb CSS Reset</a></p>
<p><a href="https://github.com/isagalaev/highlight.js/blob/master/src/styles/railscasts.css" target="_blank">Railscasts
theme for highlight.js</a></p>
<p><a href="https://www.google.com/fonts/specimen/Lato" target="_blank">Google Web Fonts/Łukasz Dziedzic</a></p>
<p><a href="http://www.w3schools.com/" target="_blank">W3Schools CSS/HTML5 Reference</a></p>
<p><a href="https://stackoverflow.com/" target="_blank">StackOverflow's CSS & JavaScript Answers</a></p>
<p><a href="http://pleeease.io/play/" target="_blank">pleeease.io's CSS Browser Prefix Generator</a></p>
<p><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript" target="_blank">Mozilla Developer Network's
JavaScript Reference</a></p>
<p><a href="http://www.codecademy.com/" target="_blank">Inspiration for design, layout and functionality from
Codecademy</a></p>
</div>
</section>
<!-- Consistent footer containing links and other information -->
<footer>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="index.html#tutorial-section">Tutorials</a></li>
<li><a href="quizzes.html">Quizzes</a></li>
<li><a href="about.html">About</a></li>
<li><a href="credits.html">Credits</a></li>
</ul>
<p>© Dylan McKee 2015 - for Newcastle University.</p>
</footer>
<!-- linking JavaScript at the end for page load speed benefits.
Using RequireJS has meant that I only need to link one file into the actual
HTML, allowing my HTML to be semantically beautiful.
I can also load JavaScript in Async, which is ideal to speed up loading,
again thanks to RequireJS.
-->
<script data-main="js/main" type="text/javascript" src="js/lib/require.js" async></script>
</body>
</html>