Learn HTML by Building a Cat Photo App - Step 11

A link’s text must be placed between the opening and closing tags of an anchor (a) element. For example, <a href="https://www.freecodecamp.org">click here to go to freeCodeCamp.org</a> is a link with the text click here to go to freeCodeCamp.org.

Add the anchor text link to cat pictures to the anchor element. This will become the link’s text.
How do it?

Welcome to our community!
You have copied and pasted the instructions for the step. However, we need that the code and question you have be submitted so the community can provide accurate and a quick response to you.
image

Please use the Help? which appears after three unsuccessful attempts on a step? By using this way to submit codes and questions, it allows people in the community to assist quickly and accurately to your concerns.

As well, here is a line that explains turning text and images into links. It may be helpful to you.

Thank you.

You have to put text between your a element.
such as;
<a href="example.com">Example </a>
It will turn Example to in a link-text.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.