diff --git a/files/en-us/learn/getting_started_with_the_web/css_basics/index.md b/files/en-us/learn/getting_started_with_the_web/css_basics/index.md index e521a3153d65e93..5cbb2a13d448b22 100644 --- a/files/en-us/learn/getting_started_with_the_web/css_basics/index.md +++ b/files/en-us/learn/getting_started_with_the_web/css_basics/index.md @@ -40,7 +40,7 @@ To make the code work, we still need to apply this CSS (above) to your HTML docu ### Anatomy of a CSS ruleset -Let's dissect the CSS code for red paragraph text to understand how it works : +Let's dissect the CSS code for red paragraph text to understand how it works: ![CSS p declaration color red](css-declaration-small.png) @@ -165,7 +165,7 @@ Now that we've explored some CSS fundamentals, let's improve the appearance of t ```css html { font-size: 10px; /* px means "pixels": the base font size is now 10 pixels high */ - font-family: "Open Sans", sans-serif; /* this should be the rest of the output you got from Google fonts */ + font-family: "Open Sans", sans-serif; /* this should be the rest of the output you got from Google Fonts */ } ```