diff --git a/02-intro-html-css/README.md b/02-intro-html-css/README.md
index c57435a..dc21d45 100644
--- a/02-intro-html-css/README.md
+++ b/02-intro-html-css/README.md
@@ -103,7 +103,7 @@ Put simply, all the web browsers have decided upon a HTML **standard**. Think of
> We'll support the `
`, `
`, `
`, `
`, `
`, `
` tags, but NOT the ``, ``, or `` tags.
-This means we have to learn the foundational tags that the standard outlines. Let's dive into that.
+This means we have to learn the foundational tags that the standard outlines. Let's dive into that. (by the way we will be working with html5, which is just a version of HTML that uses a certain standard)
We will start with HTML headings. Let's try out all the heading sizes supported by html5. Try typing the code below into your `page.html` file. (Don't copy paste! It's easier to remember the syntax when you type)
@@ -124,6 +124,86 @@ Do you notice anything? The font size gets smaller to indicate that certain text
This isn't a coincidence: HTML is structured in such a way where information and tags are ranked one above the other according to importance. This is called the `HTML Hierarchy` (Fancy word alert! Remember this, it will come up again later)
+### Paragraphs and images
+
+> Checkpoint alert! If you fell behind no worries, just copy the [code found here](checkpoints/01/page.html) into your `page.html`
+
+What if you wanted to write lengthier text? Say you wanted to write a book or a paragraph that explains why Matt is so great and how he was cheated out of his own html tag. Or maybe we want to serenade Chase about how he's such a cool person and a fantastic teacher.
+
+Let's add the following code to our `page.html` file
+
+```html
+
This is a paragraph, wow!
+
Let's write about Matt and Chase now.
+
What if you wanted to write lengthier text? Say you wanted to write a book or a paragraph that explains why Matt is so great and how he was cheated out of his own html tag. Or maybe we want to serenade Chase about how he's such a cool person and a fantastic teacher.