From 269f21841e2fb32879698e2f4119e542c41fecc7 Mon Sep 17 00:00:00 2001 From: Jeremy L Thompson Date: Tue, 28 Jun 2022 10:19:26 -0600 Subject: [PATCH] fix(curriculum) Simplify Cat-App step 6 text (#46696) cat-app - simplify step 6 text Co-Authored-By: Njong392 <81039882+Njong392@users.noreply.github.com> Co-authored-by: Njong392 <81039882+Njong392@users.noreply.github.com> --- .../5dc23991f86c76b9248c6eb8.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dc23991f86c76b9248c6eb8.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dc23991f86c76b9248c6eb8.md index a592d3902f4..2b6bc932729 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dc23991f86c76b9248c6eb8.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dc23991f86c76b9248c6eb8.md @@ -7,16 +7,16 @@ dashedName: step-6 # --description-- -In the previous step, you nested the `h2` element, comment, and `p` element within the `main` element. A nested element is a child of its parent element. It should be indented two more spaces than its parent element to improve readability, like this: +In the previous step, you nested the `h2` element, comment, and `p` element within the `main` element. Indenting nested elements two more spaces than their parent element improves readability: ```html ``` -Add two spaces in front of the three child elements of `main` so your HTML is more readable. +Add two more spaces in front of the `h1`, comment, and `p` elements so your HTML is more readable. # --hints--