From f9942d0c3f42eeee09be7b9a9cc0c09e40e8e293 Mon Sep 17 00:00:00 2001 From: Diem-Trang Pham <6422507+pdtrang@users.noreply.github.com> Date: Sun, 9 Nov 2025 01:56:56 -0600 Subject: [PATCH] fix(curriculum): replace second comprehensive check quesion in div element lesson (#63655) --- .../670803abcb3e980233da4768.md | 24 +++++++------------ 1 file changed, 8 insertions(+), 16 deletions(-) diff --git a/curriculum/challenges/english/blocks/lecture-html-fundamentals/670803abcb3e980233da4768.md b/curriculum/challenges/english/blocks/lecture-html-fundamentals/670803abcb3e980233da4768.md index 9bea2fd6efe..4eaa786e29f 100644 --- a/curriculum/challenges/english/blocks/lecture-html-fundamentals/670803abcb3e980233da4768.md +++ b/curriculum/challenges/english/blocks/lecture-html-fundamentals/670803abcb3e980233da4768.md @@ -88,43 +88,35 @@ The `div` element has no semantic meaning. ## --text-- -Which of the following is the correct syntax for a `div` element? +When is it most appropriate to use a `div` element in your HTML? ## --answers-- -```html -content goes here -``` +When dividing content into separate sections of a page. ### --feedback-- -Refer back to the notes for the correct syntax. +Refer back to the notes for the correct answer. --- -```html -
content goes here
-``` +When grouping related content for styling purposes. --- -```html -content goes here -``` +When marking up the main heading of a page. ### --feedback-- -Refer back to the beginning of the lesson for the correct syntax. +Refer back to the notes for the correct answer. --- -```html -content goes here -``` +When embedding media such as images or videos. ### --feedback-- -Refer back to the notes for the correct syntax. +Refer back to the notes for the correct answer. ## --video-solution--