Adding punctuation, fixing some typos and fixing some broken links.

This commit is contained in:
REDMOND\humorimo
2019-02-27 11:25:43 -08:00
parent adcc46858a
commit f8b55db082
5 changed files with 30 additions and 30 deletions

View File

@@ -21,8 +21,8 @@ In this exercise we will scaffold out some HTML for our Todo app, then add some
```
1. The DOCTYPE tells the browser that this file is written in modern HTML.
2. The HTML tag wraps the entire page, and is the page root. Nothing is placed outside of those tags. Attributes can be set on HTML
3. Head will contain all of the page's meta data, in this case a link to our CSS file
2. The HTML tag wraps the entire page, and is the page root. Nothing is placed outside of those tags. Attributes can be set on HTML.
3. Head will contain all of the page's meta data, in this case a link to our CSS file.
4. Body is where all of the visible content should be placed.
### Content Sectioning