fix(curriculum): typos in parent teacher conference form workshop (#64773)

This commit is contained in:
Brian Tripp
2025-12-19 08:11:09 -06:00
committed by GitHub
parent 0dc64305b9
commit 49ff43bba6
3 changed files with 3 additions and 3 deletions

View File

@@ -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`.

View File

@@ -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"`.

View File

@@ -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%`.