fix(curriculum): cat photo app (#41768)

Fix a couple of bugs I encountered when running through this
course.
This commit is contained in:
Nicholas Carrigan (he/him)
2021-04-08 01:07:18 -07:00
committed by GitHub
parent fa52f4cafe
commit a962d6afd4
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ dashedName: part-10
# --description--
You can link to another page with the anchor (`a`) element. For example, [](https://www.freecodecamp.org) would link to `freecodecamp.org`.
You can link to another page with the anchor (`a`) element. For example, `<a href='https://freecodecamp.org'></a>` would link to `freecodecamp.org`.
Add an anchor element after the paragraph that links to `https://freecatphotoapp.com`. At this point, the link wont show up in the preview.

View File

@ -9,7 +9,7 @@ dashedName: part-38
In order for a form's data to be accessed by the locaton specified in the `action` attribute, you must give the text field a `name` attribute and assign it a value to represent the data being submitted. For example, you could use the following syntax for an email address text field: `<input type="text" name="email">`.
Add the `name` attribute with the value `catphoto` to your text field.
Add the `name` attribute with the value `catphotourl` to your text field.
# --hints--