diff --git a/README.md b/README.md index 6c4b6c3..5ce8126 100644 --- a/README.md +++ b/README.md @@ -37,17 +37,12 @@ At this point, your VS Code window should look something like this: -To start the dev "inner loop" for the first three lessons, run: +To start the dev "inner loop," run: ``` -npm run static +npm start ``` -When we get to lesson 4 and React, we'll stop the static inner loop (press `ctrl + C`) and instead run: -``` -npm run start -``` - -Both of these commands will load the site shown below. +This will load the site shown below. diff --git a/step1-01/demo/README.md b/step1-01/demo/README.md index a420290..f0299d0 100644 --- a/step1-01/demo/README.md +++ b/step1-01/demo/README.md @@ -1,4 +1,6 @@ -# How the Web Works +# Step 1.1 - Introduction to HTML (Demo) + +## How the web works A simple web page is rendered on the screen via the following steps. @@ -21,7 +23,7 @@ A simple web page is rendered on the screen via the following steps. ![MDN Page Load](https://user-images.githubusercontent.com/1434956/53033758-9da8d580-3426-11e9-9ab8-09f42ccab9a8.png) -# HTML Demo +## HTML demo HTML tags are the basis of all web applications. They give the page structure and define the content within. @@ -35,7 +37,7 @@ HTML tags can also be nested to create a tree that we call the [Document Object The [HTML demo page](https://microsoft.github.io/frontend-bootcamp/step1-01/demo) shows a large collection of HTML elements that you will come across during development. The full list of elements can be found on [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element). -## Sample Website +## Sample webpage ```html diff --git a/step1-01/exercise/README.md b/step1-01/exercise/README.md index c69176e..7a056d7 100644 --- a/step1-01/exercise/README.md +++ b/step1-01/exercise/README.md @@ -1 +1,3 @@ -Readme is in index.html +# Step 1.1 - Introduction to HTML (Exercise) + +See index.html from [npm start](http://localhost:8080/step1-01/exercise/) or the [live site](https://microsoft.github.io/frontend-bootcamp/step1-01/exercise/) for the exercise. \ No newline at end of file diff --git a/step1-02/README.md b/step1-02/demo/README.md similarity index 93% rename from step1-02/README.md rename to step1-02/demo/README.md index 9f3c218..01072e0 100644 --- a/step1-02/README.md +++ b/step1-02/demo/README.md @@ -1,6 +1,6 @@ -## CSS Demo +# Step 1.2 - Introduction to CSS (Demo) -### CSS Properties +## CSS properties Now that we've gone over adding HTML tags to the page, let's cover adding styles to those tags. We can do quite a lot with styles! We can change: @@ -15,7 +15,7 @@ Now that we've gone over adding HTML tags to the page, let's cover adding styles CSS styles are always written in `property: value` pairs (like `background: blue;`) and terminated with a semicolon. -### Applying CSS to an HTML file +## Applying CSS to an HTML file CSS can be applied to HTML tags in three different ways. @@ -25,7 +25,7 @@ CSS can be applied to HTML tags in three different ways. 3. Through an external CSS file - `` -### Targeting specific elements +## Targeting specific elements Inline styles are always applied directly to the element you place them on, but `