From 9f772c0a8851ca8b54c92896cd5063a4a7e1eb87 Mon Sep 17 00:00:00 2001 From: Jen Looper Date: Mon, 28 Dec 2020 14:53:18 -0500 Subject: [PATCH] quiz links for lessons 1-4 --- 1-getting-started-lessons/2-github-basics/README.md | 4 ++-- 1-getting-started-lessons/3-accessibility/README.md | 4 ++-- 2-js-basics/1-data-types/README.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/1-getting-started-lessons/2-github-basics/README.md b/1-getting-started-lessons/2-github-basics/README.md index 2f1a4b6b..f32375cb 100644 --- a/1-getting-started-lessons/2-github-basics/README.md +++ b/1-getting-started-lessons/2-github-basics/README.md @@ -6,7 +6,7 @@ This lesson covers the basics of GitHub, a platform to host and manage changes t > Sketchnote by [Tomomi Imura](https://twitter.com/girlie_mac) ## Pre-Lecture Quiz -[Pre-lecture quiz](.github/pre-lecture-quiz.md) +[Pre-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/3) ## Introduction @@ -299,7 +299,7 @@ Projects might also have discussion in forums, mailing lists, or chat channels l Pair with a friend to work on each other's code. Create a project collaboratively, fork code, create branches, and merge changes. ## Post-Lecture Quiz -[Post-lecture quiz](.github/post-lecture-quiz.md) +[Post-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/4) ## Review & Self Study diff --git a/1-getting-started-lessons/3-accessibility/README.md b/1-getting-started-lessons/3-accessibility/README.md index d8c00cd0..99afa170 100644 --- a/1-getting-started-lessons/3-accessibility/README.md +++ b/1-getting-started-lessons/3-accessibility/README.md @@ -4,7 +4,7 @@ > Sketchnote by [Tomomi Imura](https://twitter.com/girlie_mac) ## Pre-Lecture Quiz -[Pre-lecture quiz](.github/pre-lecture-quiz.md) +[Pre-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/5) > The power of the Web is in its universality. Access by everyone regardless of disability is an essential aspect. > @@ -216,7 +216,7 @@ Take this HTML and rewrite it to be as accessible as possible, given the strateg ``` ## Post-Lecture Quiz -[Post-lecture quiz](.github/post-lecture-quiz.md) +[Post-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/6) ## Review & Self Study diff --git a/2-js-basics/1-data-types/README.md b/2-js-basics/1-data-types/README.md index fcc8528a..ddee1284 100644 --- a/2-js-basics/1-data-types/README.md +++ b/2-js-basics/1-data-types/README.md @@ -4,7 +4,7 @@ > Sketchnote by [Tomomi Imura](https://twitter.com/girlie_mac) ## Pre-Lecture Quiz -[Pre-lecture quiz](.github/pre-lecture-quiz.md) +[Pre-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/7) This lesson covers the basics of JavaScript, the language that provides interactivity on the web. @@ -185,7 +185,7 @@ Booleans can be only two values: `true` or `false`. Booleans can help make decis 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? ## Post-Lecture Quiz -[Post-lecture quiz](.github/post-lecture-quiz.md) +[Post-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/8) ## Review & Self Study