Skip to content

Commit 2201b79

Browse files
committed
Replace broken quiz links
1 parent 8c97673 commit 2201b79

File tree

22 files changed

+44
-44
lines changed

22 files changed

+44
-44
lines changed

1-getting-started-lessons/3-accessibility/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
> Sketchnote by [Tomomi Imura](https://twitter.com/girlie_mac)
55
66
## Pre-Lecture Quiz
7-
[Pre-lecture quiz](1-getting-started-lessons/3-accessibility/.github/pre-lecture-quiz.md)
7+
[Pre-lecture quiz](.github/pre-lecture-quiz.md)
88

99
> The power of the Web is in its universality. Access by everyone regardless of disability is an essential aspect.
1010
>
@@ -207,7 +207,7 @@ Take this HTML and rewrite it to be as accessible as possible, given the strateg
207207
```
208208

209209
## Post-Lecture Quiz
210-
[Post-lecture quiz](1-getting-started-lessons/3-accessibility/.github/post-lecture-quiz.md)
210+
[Post-lecture quiz](.github/post-lecture-quiz.md)
211211

212212
## Review & Self Study
213213

2-js-basics/1-data-types/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
> Sketchnote by [Tomomi Imura](https://twitter.com/girlie_mac)
55
66
## Pre-Lecture Quiz
7-
[Pre-lecture quiz](2-js-basics/1-data-types/.github/pre-lecture-quiz.md)
7+
[Pre-lecture quiz](.github/pre-lecture-quiz.md)
88

99
This lesson covers the basics of JavaScript, the language that provides interactivity on the web.
1010

@@ -185,7 +185,7 @@ Booleans can be only two values: `true` or `false`. Booleans can help make decis
185185
JavaScript is notorious for its surprising ways of handling datatypes on occasion. Do a bit of research on these 'gotchas'. For example: case sensitivity can bite! Try this in your console: `let age = 1; let Age = 2; age == Age` (resolves `false` -- why?). What other gotchas can you find?
186186
187187
## Post-Lecture Quiz
188-
[Post-lecture quiz](2-js-basics/1-data-types/.github/post-lecture-quiz.md)
188+
[Post-lecture quiz](.github/post-lecture-quiz.md)
189189
190190
## Review & Self Study
191191

2-js-basics/2-functions-methods/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
> Sketchnote by [Tomomi Imura](https://twitter.com/girlie_mac)
55
66
## Pre-Lecture Quiz
7-
[Pre-lecture quiz](2-js-basics/2-functions-methods/.github/pre-lecture-quiz.md)
7+
[Pre-lecture quiz](.github/pre-lecture-quiz.md)
88

99
When we think about writing code, we always want to ensure our code is readable. While this sounds counterintuitive, code is read many more times than it's written. One core tool in a developer's toolbox to ensure maintainable code is the **function**.
1010

@@ -181,7 +181,7 @@ You've now seen we have three ways to pass a function as a parameter and might b
181181
Can you articulate in one sentence the difference between functions and methods? Give it a try!
182182

183183
## Post-Lecture Quiz
184-
[Post-lecture quiz](2-js-basics/2-functions-methods/.github/post-lecture-quiz.md)
184+
[Post-lecture quiz](.github/post-lecture-quiz.md)
185185

186186
## Review & Self Study
187187

2-js-basics/3-making-decisions/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
##
77
Pre-Lecture Quiz
8-
[Pre-lecture quiz](2-js-basics/3-making-decisions/.github/pre-lecture-quiz.md)
8+
[Pre-lecture quiz](.github/pre-lecture-quiz.md)
99

1010
Making decisions and controlling the order in which your code runs makes your code reusable and robust. This section covers the syntax for controlling data flow in JavaScript and its significance when used with Boolean data types
1111

@@ -162,7 +162,7 @@ Create a program that is written first with logical operators, and then rewrite
162162
163163
##
164164
Post-Lecture Quiz
165-
[Post-lecture quiz](2-js-basics/3-making-decisions/.github/post-lecture-quiz.md)
165+
[Post-lecture quiz](.github/post-lecture-quiz.md)
166166
167167
## Review & Self Study
168168

2-js-basics/4-arrays-loops/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
##
77
Pre-Lecture Quiz
8-
[Pre-lecture quiz](2-js-basics/4-arrays-loops/.github/pre-lecture-quiz.md)
8+
[Pre-lecture quiz](.github/pre-lecture-quiz.md)
99

1010
This lesson covers the basics of JavaScript, the language that provides interactivity on the web. In this lesson, you'll learn about arrays and loops, which are used to manipulate data.
1111

@@ -114,7 +114,7 @@ There are other ways of looping over arrays other than for and while loops. Ther
114114

115115
##
116116
Post-Lecture Quiz
117-
[Post-lecture quiz](2-js-basics/4-arrays-loops/.github/post-lecture-quiz.md)
117+
[Post-lecture quiz](.github/post-lecture-quiz.md)
118118

119119

120120
## Review & Self Study

3-terrarium/1-intro-to-html/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
## Pre-Lecture Quiz
77

8-
[Pre-lecture quiz](3-terrarium/1-intro-to-html/.github/pre-lecture-quiz.md)
8+
[Pre-lecture quiz](.github/pre-lecture-quiz.md)
99

1010
### Introduction
1111

@@ -209,7 +209,7 @@ There are some wild 'older' tags in HTML that are still fun to play with, though
209209

210210
## Post-Lecture Quiz
211211

212-
[Post-lecture quiz](3-terrarium/1-intro-to-html/.github/post-lecture-quiz.md)
212+
[Post-lecture quiz](.github/post-lecture-quiz.md)
213213

214214
## Review & Self Study
215215

3-terrarium/2-intro-to-css/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
## Pre-Lecture Quiz
77

8-
[Pre-lecture quiz](3-terrarium/2-intro-to-css.github/pre-lecture-quiz.md)
8+
[Pre-lecture quiz](.github/pre-lecture-quiz.md)
99

1010
### Introduction
1111

@@ -252,7 +252,7 @@ To complete the post-lecture quiz, go through this Learn module: [Style your HTM
252252

253253
## Post-Lecture Quiz
254254

255-
[Post-lecture quiz](3-terrarium/2-intro-to-css/.github/post-lecture-quiz.md)
255+
[Post-lecture quiz](.github/post-lecture-quiz.md)
256256

257257
## Review & Self Study
258258

3-terrarium/3-intro-to-DOM-and-closures/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
## Pre-Lecture Quiz
77

8-
[Pre-lecture quiz](3-terrarium/3-intro-to-DOM-and-closures/.github/pre-lecture-quiz.md)
8+
[Pre-lecture quiz](.github/pre-lecture-quiz.md)
99

1010
### Introduction
1111

@@ -199,7 +199,7 @@ Add new event handler to your closure to do something more to the plants; for ex
199199

200200
## Post-Lecture Quiz
201201

202-
[Post-lecture quiz](3-terrarium/3-intro-to-DOM-and-closures/.github/post-lecture-quiz.md)
202+
[Post-lecture quiz](.github/post-lecture-quiz.md)
203203

204204
## Review & Self Study
205205

4-typing-game/typing-game/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Pre-Lecture Quiz
44

5-
[Pre-lecture quiz](4-typing-game/typing-game/.github/pre-lecture-quiz.md)
5+
[Pre-lecture quiz](.github/pre-lecture-quiz.md)
66

77
## Event driven programming
88

@@ -325,7 +325,7 @@ Add more functionality
325325

326326
## Post-Lecture Quiz
327327

328-
[Post-lecture quiz](4-typing-game/typing-game/.github/post-lecture-quiz.md)
328+
[Post-lecture quiz](.github/post-lecture-quiz.md)
329329

330330
## Review & Self Study
331331

5-browser-extension/1-about-browsers/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
## Pre-Lecture Quiz
77

8-
[Pre-lecture quiz](5-browser-extension/1-about-browsers/.github/pre-lecture-quiz.md)
8+
[Pre-lecture quiz](.github/pre-lecture-quiz.md)
99

1010
### Introduction
1111

@@ -150,7 +150,7 @@ Take a look at a browser extension store and install one to your browser. You ca
150150

151151
## Post-Lecture Quiz
152152

153-
[Post-lecture quiz](5-browser-extension/1-about-browsers/.github/post-lecture-quiz.md)
153+
[Post-lecture quiz](.github/post-lecture-quiz.md)
154154

155155
## Review & Self Study
156156

0 commit comments

Comments
 (0)