From 49ff43bba65ff2a1d4c4746faded2a87b42094a9 Mon Sep 17 00:00:00 2001 From: Brian Tripp <46498972+bdtripp@users.noreply.github.com> Date: Fri, 19 Dec 2025 08:11:09 -0600 Subject: [PATCH] fix(curriculum): typos in parent teacher conference form workshop (#64773) --- .../68ea8e6a87a2816b0bb2eb7d.md | 2 +- .../68ea9f01c51b66b937793611.md | 2 +- .../68eb323ff5a6dc1cc19fa300.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/curriculum/challenges/english/blocks/workshop-parent-teacher-conference-form/68ea8e6a87a2816b0bb2eb7d.md b/curriculum/challenges/english/blocks/workshop-parent-teacher-conference-form/68ea8e6a87a2816b0bb2eb7d.md index e964d4cd19a..bca469f6614 100644 --- a/curriculum/challenges/english/blocks/workshop-parent-teacher-conference-form/68ea8e6a87a2816b0bb2eb7d.md +++ b/curriculum/challenges/english/blocks/workshop-parent-teacher-conference-form/68ea8e6a87a2816b0bb2eb7d.md @@ -7,7 +7,7 @@ dashedName: step-8 # --description-- -The next step is to section in the form for the parent information. +The next step is the section in the form for the parent information. Start by adding another `fieldset` element. Inside that `fieldset` element, add a `legend` element with the text `Parent/Guardian Information`. diff --git a/curriculum/challenges/english/blocks/workshop-parent-teacher-conference-form/68ea9f01c51b66b937793611.md b/curriculum/challenges/english/blocks/workshop-parent-teacher-conference-form/68ea9f01c51b66b937793611.md index d1ef1594f09..0cb0f2079d9 100644 --- a/curriculum/challenges/english/blocks/workshop-parent-teacher-conference-form/68ea9f01c51b66b937793611.md +++ b/curriculum/challenges/english/blocks/workshop-parent-teacher-conference-form/68ea9f01c51b66b937793611.md @@ -7,7 +7,7 @@ dashedName: step-12 # --description-- -Next, add another label with a class of `"contact-method"` and a `for` attribute set to `"phone"`. The label should text should be `Phone: `. +Next, add another label with a class of `"contact-method"` and a `for` attribute set to `"phone"`. The label text should be `Phone: `. Below your `label` element, add a radio button with `id` and `value` attributes set to `"phone"`. The `name` attribute should be set to `"contact-method"` and the class should be set to `"contact-method-radio-btn"`. diff --git a/curriculum/challenges/english/blocks/workshop-parent-teacher-conference-form/68eb323ff5a6dc1cc19fa300.md b/curriculum/challenges/english/blocks/workshop-parent-teacher-conference-form/68eb323ff5a6dc1cc19fa300.md index 3cca2de6545..8a196841c31 100644 --- a/curriculum/challenges/english/blocks/workshop-parent-teacher-conference-form/68eb323ff5a6dc1cc19fa300.md +++ b/curriculum/challenges/english/blocks/workshop-parent-teacher-conference-form/68eb323ff5a6dc1cc19fa300.md @@ -9,7 +9,7 @@ dashedName: step-32 Now, you should create the inner circle that will appear when the radio button is checked. You will use the `::before` pseudo-element for this. -A pseudo-element like `:before` lets you insert extra content before the actual element. This is often used for decorative purposes. +A pseudo-element like `::before` lets you insert extra content before the actual element. This is often used for decorative purposes. Targeting `.contact-method-radio-btn::before` pseudo-element, set a `display` of `block`, `content` of `" "`, `width` of `10px`, `height` of `10px`, and `border-radius` of `50%`.