diff --git a/curriculum/challenges/english/01-responsive-web-design/basic-html-cat-photo-app/part-010.md b/curriculum/challenges/english/01-responsive-web-design/basic-html-cat-photo-app/part-010.md index e8fa2e788c..d3d9e2826e 100644 --- a/curriculum/challenges/english/01-responsive-web-design/basic-html-cat-photo-app/part-010.md +++ b/curriculum/challenges/english/01-responsive-web-design/basic-html-cat-photo-app/part-010.md @@ -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, `` would link to `freecodecamp.org`. Add an anchor element after the paragraph that links to `https://freecatphotoapp.com`. At this point, the link won’t show up in the preview. diff --git a/curriculum/challenges/english/01-responsive-web-design/basic-html-cat-photo-app/part-038.md b/curriculum/challenges/english/01-responsive-web-design/basic-html-cat-photo-app/part-038.md index 0dfce3aeb2..6a35de6da9 100644 --- a/curriculum/challenges/english/01-responsive-web-design/basic-html-cat-photo-app/part-038.md +++ b/curriculum/challenges/english/01-responsive-web-design/basic-html-cat-photo-app/part-038.md @@ -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: ``. -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--