no entiendo que debo hacer allí, ya he visto videos en youtube y me siguen saltando errores (en los videos sale “click here to view more cats”) cuando lo pongo me sale que debe ir “see more cat photos in our gallery” y me salta que debo poner cat photos. i need help
The a
element should replace the cat photos
text inside the p
element. The text should not be repeated.
Example:
<p>Visit the freeCodeCamp forum.</p>
<a href="https://forum.freecodecamp.org/">freeCodeCamp</a>
Becomes:
<p>Visit the <a href="https://forum.freecodecamp.org/">freeCodeCamp</a> forum.</p>
1 Like