forked from dytcodetogether/gdi-intermediate-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (65 loc) · 3.9 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Intermediate JavaScript - Girl Develop It</title>
<meta name="description" content="This is the Girl Develop It Intermediate JavaScript course. The course is meant to be taught in 4 two-hour sections. Each of the slides and practice files are customizable according to the needs of a given class or audience.">
<meta name="author" content="Girl Develop It">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<link rel="stylesheet" href="css/classlinks.css">
</head>
<body>
<div class="classlinks">
<header>
<img src="img/gdi-logo.png" class="gdi-seattle-logo" alt="GDI Seattle">
<h1>Intermediate to JavaScript</h1>
<p>Use these links as a reference throughout the class.</p>
<p><a href="https://codepen.io/collection/AygMPm/" target="_blank">CodePen collection of all examples for this course</a></p>
</header>
<section class="lists">
<div class="column">
<h2>Class 1: Variables, Arrays, and Objects</h2>
<ul>
<li><a href="class1.html" target="_blank">Class 1 Slides</a></li>
<li><a href="files/exercise-arrayofobjects.html">Class 1 Homework: Array of Objects</a></li>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide" target="_blank">JavaScript Guide</a></li>
<!-- <li><a href="http://www.codecademy.com/tracks/javascript" target="_blank">Code Academy</a></li> -->
<!-- <li><a href="http://jsforcats.com/" target="_blank">JavaScript For Cats,</a></li> -->
</ul>
</div>
<div class="column">
<h2>Class 2: Functions, DOM, and Events</h2>
<ul>
<li><a href="class2.html" target="_blank">Class 2 Slides</a></li>
<li><a href="files/exercise-functionobject.html" target="_blank">Function are objects too practice</a></li>
<li><a href="class2.html#/56" target="_blank">End of Class Exercise</a></li>
<li><a href="class2.html#/58" target="_blank">Class 2 Homework: Setting up a server!</a></li>
</ul>
</div>
<div class="column">
<h2>Class 3: OOP: Object-Oriented Programming</h2>
<ul>
<li><a href="class3.html" target="_blank">Class 3 Slides</a></li>
<!-- <li><a href="homework3.html" target="_blank">Class 3 Homework</a></li> -->
</ul>
</div>
<div class="column">
<h2>Class 4: JSON and Ajax</h2>
<ul>
<li><a href="class4.html" target="_blank">Class 4 Slides</a></li>
<!-- <li><a href="files/exercise-localserver.html" target="_blank">Local File Server</a></li> -->
<!-- <li><a href="files/exercise-ajaxvideoplayer.html" target="_blank">Video Player</a></li> -->
<!-- <a href="http://jsonlint.com/" target="_blank">JSONlint.com</a> -->
</ul>
</div>
</section>
<footer>
<div class="copyright">
Intermediate Javascript — Girl Develop It —
<a rel="license" href="http://creativecommons.org/licenses/by-nc/3.0/deed.en_US" target="_blank"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc/3.0/80x15.png" /></a>
</div>
</footer>
</div>
</body>
</html>