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--