From c2bedfc371f29c63220b55dfec99a98c1d5fe4bd Mon Sep 17 00:00:00 2001 From: JungLee-Dev <122341199+JungLee-Dev@users.noreply.github.com> Date: Fri, 27 Dec 2024 09:54:05 -0700 Subject: [PATCH] fix(curriculum): update question for structural hierarchy video (#57794) --- .../672985445d7da807c6b4f406.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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--