From d5df33fa6fb306c93f549147abf64264a0225571 Mon Sep 17 00:00:00 2001 From: Sam <51801821+samkim777@users.noreply.github.com> Date: Wed, 30 Aug 2023 11:20:18 -0700 Subject: [PATCH] fix(curriculum): add code example in step 12 of Cat Photo App project (#51376) --- .../5dfa22d1b521be39a3de7be0.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md index 158e903c6ea..5babf743802 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md @@ -7,9 +7,13 @@ dashedName: step-12 # --description-- -In the previous step you turned the words `link to cat pictures` into a link by placing them between opening and closing anchor (`a`) tags. You can do the same to words inside of an element, such as a `p` element. +You can turn any text into a link, such as the text inside of a `p` element. -In the text of your `p` element, turn the words `cat photos` into a link to `https://freecatphotoapp.com` by adding opening and closing anchor (`a`) tags around these words. +``` html +
I think freeCodeCamp is great.
+``` + +In the text of your `p` element, turn the words `cat photos` into a link by adding opening and closing anchor (`a`) tags around these words. Then set the `href` attribute to `https://freecatphotoapp.com/` # --hints--