fix(curriculum): add sentence to instructions for clarity (#43227)

This commit is contained in:
MChiancone
2021-08-18 11:17:50 -04:00
committed by GitHub
parent 84760cba9e
commit 1745411c24
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ Here's a <a href="https://www.freecodecamp.org" target="_blank">link to www.free
# --instructions--
Nest the existing `a` element within a new `p` element. The new paragraph should have text that says `View more cat photos`, where `cat photos` is a link, and the rest is plain text.
Nest the existing `a` element within a new `p` element. Do not create a new anchor tag. The new paragraph should have text that says `View more cat photos`, where `cat photos` is a link, and the rest is plain text.
# --hints--

View File

@ -27,7 +27,7 @@ If you omit the `value` attribute, the submitted form data uses the default valu
# --instructions--
Give each of the `radio` and `checkbox` inputs the `value` attribute. Use the input label text, in lowercase, as the value for the attribute.
Give each of the existing `radio` and `checkbox` inputs the `value` attribute. Do not create any new radio or checkbox elements. Use the input label text, in lowercase, as the value for the attribute.
# --hints--