From 6d966d1edcd4d73825370ccc4d0df2c58755d0bd Mon Sep 17 00:00:00 2001 From: Diem-Trang Pham <6422507+pdtrang@users.noreply.github.com> Date: Wed, 21 Jan 2026 07:32:09 -0600 Subject: [PATCH] feat(curriculum): add interactive examples to HTML chapter review page (#65202) --- .../review-html/671a883163d5ab5d47145880.md | 26 ++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/review-html/671a883163d5ab5d47145880.md b/curriculum/challenges/english/blocks/review-html/671a883163d5ab5d47145880.md index 08a1de00780..47280576b53 100644 --- a/curriculum/challenges/english/blocks/review-html/671a883163d5ab5d47145880.md +++ b/curriculum/challenges/english/blocks/review-html/671a883163d5ab5d47145880.md @@ -5,7 +5,7 @@ challengeType: 31 dashedName: review-html --- -# --description-- +# --interactive-- Review the concepts below to prepare for the upcoming prep exam. @@ -123,6 +123,8 @@ Review the concepts below to prepare for the upcoming prep exam. - **`disabled` attribute**: used to specify that an input field should be disabled. - **`readonly` attribute**: used to specify that an input field is read-only. +:::interactive_editor + ```html ``` +::: + - **`label` element**: used to create a label for an input field. - **`for` attribute**: used to specify which input field the label is for. - **Implicit form association**: inputs can be associated with labels by wrapping the input field inside the `label` element. +:::interactive_editor + ```html