diff --git a/challenges/01-responsive-web-design/basic-css.json b/challenges/01-responsive-web-design/basic-css.json
index b81457c25b..a042921a18 100644
--- a/challenges/01-responsive-web-design/basic-css.json
+++ b/challenges/01-responsive-web-design/basic-css.json
@@ -158,7 +158,7 @@
"description": [
"With CSS, there are hundreds of CSS properties
that you can use to change the way an element looks on your page.",
"When you entered <h2 style=\"color: red\">CatPhotoApp</h2>
, you were giving that individual h2
element an inline style
.",
- "That's one way to add style to an element, but a better way is by using CSS
, which stands for Cascading Style Sheets
.",
+ "That's one way to add style to an element, but there's a better way to use CSS
, which stands for Cascading Style Sheets
.",
"At the top of your code, create a style
element like this:",
"
<style>", "Inside that style element, you can create a
</style>
CSS selector
for all h2
elements. For example, if you wanted all h2
elements to be red, your style element would look like this:",