diff --git a/popup-lite-brite/css/index.md b/popup-lite-brite/css/index.md index 44e590c..3fc3d69 100644 --- a/popup-lite-brite/css/index.md +++ b/popup-lite-brite/css/index.md @@ -44,11 +44,11 @@ You may be wondering, "how does one know all these special keywords and commands ### Up Next -- [What is Front End and Back End Engineering?](../../what-is-fe-be) -- [Project Setup](../) +- [What is Front End and Back End Engineering?](../what-is-fe-be) +- [Project Setup](../litebrite) - [HTML - Content](../html) - [CSS - Styles](../css) - [JavaScript- Explore](../js-1) - [JavaScript - Create](../js-2) - [Extensions](../extensions) -- [Wrap-Up](../../wrap-up) +- [Wrap-Up](../wrap-up) diff --git a/popup-lite-brite/extensions/index.md b/popup-lite-brite/extensions/index.md index c57fd77..2b2d910 100644 --- a/popup-lite-brite/extensions/index.md +++ b/popup-lite-brite/extensions/index.md @@ -66,11 +66,11 @@ Run the program, and try this functionality out! ### Up Next -- [What is Front End and Back End Engineering?](../../what-is-fe-be) -- [Project Setup](../) +- [What is Front End and Back End Engineering?](../what-is-fe-be) +- [Project Setup](../litebrite) - [HTML - Content](../html) - [CSS - Styles](../css) - [JavaScript- Explore](../js-1) - [JavaScript - Create](../js-2) - [Extensions](../extensions) -- [Wrap-Up](../../wrap-up) +- [Wrap-Up](../wrap-up) diff --git a/popup-lite-brite/html/index.md b/popup-lite-brite/html/index.md index aeb19a7..3803371 100644 --- a/popup-lite-brite/html/index.md +++ b/popup-lite-brite/html/index.md @@ -29,11 +29,11 @@ layout: lesson ### Up Next -- [What is Front End and Back End Engineering?](../../what-is-fe-be) -- [Project Setup](../) +- [What is Front End and Back End Engineering?](../what-is-fe-be) +- [Project Setup](../litebrite) - [HTML - Content](../html) - [CSS - Styles](../css) - [JavaScript- Explore](../js-1) - [JavaScript - Create](../js-2) - [Extensions](../extensions) -- [Wrap-Up](../../wrap-up) +- [Wrap-Up](../wrap-up) diff --git a/popup-lite-brite/js-1/index.md b/popup-lite-brite/js-1/index.md index e10539c..71ecff2 100644 --- a/popup-lite-brite/js-1/index.md +++ b/popup-lite-brite/js-1/index.md @@ -41,11 +41,11 @@ Now, let's walk through each line of the existing JavaScript to understand what' ### Up Next -- [What is Front End and Back End Engineering?](../../what-is-fe-be) -- [Project Setup](../) +- [What is Front End and Back End Engineering?](../what-is-fe-be) +- [Project Setup](../litebrite) - [HTML - Content](../html) - [CSS - Styles](../css) - [JavaScript- Explore](../js-1) - [JavaScript - Create](../js-2) - [Extensions](../extensions) -- [Wrap-Up](../../wrap-up) +- [Wrap-Up](../wrap-up) diff --git a/popup-lite-brite/js-2/index.md b/popup-lite-brite/js-2/index.md index 18b5e67..a14f59b 100644 --- a/popup-lite-brite/js-2/index.md +++ b/popup-lite-brite/js-2/index.md @@ -47,8 +47,8 @@ Option 2: Copy and paste from the [final solution](https://codepen.io/turing-try ### Up Next -- [What is Front End and Back End Engineering?](../../what-is-fe-be) -- [Project Setup](../) +- [What is Front End and Back End Engineering?](../what-is-fe-be) +- [Project Setup](../litebrite) - [HTML - Content](../html) - [CSS - Styles](../css) - [JavaScript- Explore](../js-1) diff --git a/popup-lite-brite/litebrite/index.md b/popup-lite-brite/litebrite/index.md index 053f6ab..ab7e034 100644 --- a/popup-lite-brite/litebrite/index.md +++ b/popup-lite-brite/litebrite/index.md @@ -28,21 +28,21 @@ It can feel like a lot, but let's start by building an understanding of what eac
HTML holds the content we see on a page (text, images) and defines the structure and order in which the content appears.
We can think of HTML as the skeleton of our webpage; without it, we'd just be a blob:
-CSS defines the look and feel of a webpage - it can change the size or layout of items on a page, change colors, fonts, and more!
We can think of CSS as anything that makes us unique and recognizable - our skin, hair, clothes, style, etc.
-JavaScript is what lets the user interact with a page. For example, clicking a button and getting some sort of response.
We can think of JavaScript as the brain and muscle of our webpage, as it powers all the action:
-