diff --git a/curriculum/challenges/english/25-front-end-development/lecture-importance-of-semantic-html/672985445d7da807c6b4f406.md b/curriculum/challenges/english/25-front-end-development/lecture-importance-of-semantic-html/672985445d7da807c6b4f406.md index e86ed9318d3..9d0fab401d5 100644 --- a/curriculum/challenges/english/25-front-end-development/lecture-importance-of-semantic-html/672985445d7da807c6b4f406.md +++ b/curriculum/challenges/english/25-front-end-development/lecture-importance-of-semantic-html/672985445d7da807c6b4f406.md @@ -50,15 +50,15 @@ All of the above ## --text-- -What element must an `h3` element come after? +Which heading element must precede an `h3` element? ## --answers-- -`h1` +`h5` ### --feedback-- -Think about the order of headings. If heading level 2 comes after heading level 1. +Think about the order of headings. For example, an `h2` should come after an `h1`. --- @@ -66,11 +66,11 @@ Think about the order of headings. If heading level 2 comes after heading level --- -`h3` +`h6` ### --feedback-- -Think about the order of headings. If heading level 2 comes after heading level 1. +Think about the order of headings. For example, an `h2` should come after an `h1`. --- @@ -78,7 +78,7 @@ Think about the order of headings. If heading level 2 comes after heading level ### --feedback-- -Think about the order of headings. If heading level 2 comes after heading level 1. +Think about the order of headings. For example, an `h2` should come after an `h1`. ## --video-solution--