fix: corrected freecatphotoapp.com link

This commit is contained in:
Randell Dawson 2020-07-24 23:16:42 -07:00 committed by Mrugesh Mohapatra
parent fd6f8b5cd4
commit 3b8e257643
58 changed files with 119 additions and 119 deletions

View File

@ -10,7 +10,7 @@ isHidden: true
You can link to another page with the anchor (`a`) element. For example, <a href="https://www.freecodecamp.org"></a> would link to `freecodecamp.org`. You can link to another page with the anchor (`a`) element. For example, <a href="https://www.freecodecamp.org"></a> would link to `freecodecamp.org`.
Add an anchor element after the paragraph that links to `https://www.freecodecamp.org/cat-photos`. At this point, the link wont show up in the preview. Add an anchor element after the paragraph that links to `https://freecatphotoapp.com`. At this point, the link wont show up in the preview.
</section> </section>
@ -27,8 +27,8 @@ tests:
testString: const collection = [...document.querySelectorAll('a, p')].map(node => node.nodeName); assert( collection.indexOf('P') < collection.indexOf('A') ); testString: const collection = [...document.querySelectorAll('a, p')].map(node => node.nodeName); assert( collection.indexOf('P') < collection.indexOf('A') );
- text: Your anchor (`a`) element does not have an `href` attribute. Check that there is a space after the opening tag's name and/or there are spaces before all attribute names. - text: Your anchor (`a`) element does not have an `href` attribute. Check that there is a space after the opening tag's name and/or there are spaces before all attribute names.
testString: assert( document.querySelector('a').hasAttribute('href') ); testString: assert( document.querySelector('a').hasAttribute('href') );
- text: "Your anchor (`a`) element should link to `https://www.freecodecamp.org/cat-photos`. You have either omitted the URL or have a typo." - text: "Your anchor (`a`) element should link to `https://freecatphotoapp.com`. You have either omitted the URL or have a typo."
testString: assert( document.querySelector('a').getAttribute('href') === 'https://www.freecodecamp.org/cat-photos' ); testString: assert( document.querySelector('a').getAttribute('href') === 'https://freecatphotoapp.com' );
- text: Although you have set the anchor ('a') element's `href` attribute to the correct link, it is recommended to always surround the value of an attribute with quotation marks. - text: Although you have set the anchor ('a') element's `href` attribute to the correct link, it is recommended to always surround the value of an attribute with quotation marks.
testString: assert( !/\<a\s+href\s*=\s*https:\/\/www.freecodecamp.org\/cat-photos/.test(code) ); testString: assert( !/\<a\s+href\s*=\s*https:\/\/www.freecodecamp.org\/cat-photos/.test(code) );

View File

@ -44,7 +44,7 @@ tests:
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more cat photos.</p> <p>Click here to view more cat photos.</p>
--fcc-editable-region-- --fcc-editable-region--
<a href="https://www.freecodecamp.org/cat-photos"></a> <a href="https://freecatphotoapp.com"></a>
--fcc-editable-region-- --fcc-editable-region--
<img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."> <img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back.">
</main> </main>

View File

@ -24,7 +24,7 @@ tests:
- text: The link's text should be `cat photos`. You have either omitted the text or have a typo. - text: The link's text should be `cat photos`. You have either omitted the text or have a typo.
testString: const nestedAnchor = $('p > a')[0]; testString: const nestedAnchor = $('p > a')[0];
assert( assert(
nestedAnchor.getAttribute('href') === 'https://www.freecodecamp.org/cat-photos' && nestedAnchor.getAttribute('href') === 'https://freecatphotoapp.com' &&
nestedAnchor.innerText.toLowerCase().replace(/\s+/g, ' ') === 'cat photos' nestedAnchor.innerText.toLowerCase().replace(/\s+/g, ' ') === 'cat photos'
); );
- text: After nesting the anchor (`a`) element, the only `p` element content visible in the browser should be `Click here to view more cat photos.` Double check the text, spacing, or punctuation of both the `p` and nested anchor element. - text: After nesting the anchor (`a`) element, the only `p` element content visible in the browser should be `Click here to view more cat photos.` Double check the text, spacing, or punctuation of both the `p` and nested anchor element.
@ -50,7 +50,7 @@ tests:
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
--fcc-editable-region-- --fcc-editable-region--
<p>Click here to view more cat photos.</p> <p>Click here to view more cat photos.</p>
<a href="https://www.freecodecamp.org/cat-photos">cat photos</a> <a href="https://freecatphotoapp.com">cat photos</a>
--fcc-editable-region-- --fcc-editable-region--
<img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."> <img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back.">
</main> </main>

View File

@ -43,7 +43,7 @@ tests:
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
--fcc-editable-region-- --fcc-editable-region--
<p>Click here to view more <a href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a href="https://freecatphotoapp.com">cat photos</a>.</p>
--fcc-editable-region-- --fcc-editable-region--
<img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."> <img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back.">
</main> </main>

View File

@ -8,7 +8,7 @@ isHidden: true
## Description ## Description
<section id='description'> <section id='description'>
Turn the image into a link by surrounding it with necessary element tags. Use `https://www.freecodecamp.org/cat-photos` as the anchor's `href` attribute value. Turn the image into a link by surrounding it with necessary element tags. Use `https://freecatphotoapp.com` as the anchor's `href` attribute value.
</section> </section>
@ -29,8 +29,8 @@ tests:
testString: assert( code.match(/<\/a>/g).length === 2 ); testString: assert( code.match(/<\/a>/g).length === 2 );
- text: Your anchor (`a`) element does not have an `href` attribute. Check that there is a space after the opening tag's name and/or there are spaces before all attribute names. - text: Your anchor (`a`) element does not have an `href` attribute. Check that there is a space after the opening tag's name and/or there are spaces before all attribute names.
testString: assert( document.querySelector('a').hasAttribute('href') ); testString: assert( document.querySelector('a').hasAttribute('href') );
- text: Your anchor (`a`) element should link to `https://www.freecodecamp.org/cat-photos`. You have either omitted the URL or have a typo. - text: Your anchor (`a`) element should link to `https://freecatphotoapp.com`. You have either omitted the URL or have a typo.
testString: assert( document.querySelectorAll('a')[1].getAttribute('href') === 'https://www.freecodecamp.org/cat-photos' ); testString: assert( document.querySelectorAll('a')[1].getAttribute('href') === 'https://freecatphotoapp.com' );
- text: Your `img` element should be nested within the anchor (`a`) element. The entire `img` element should be inside the opening and closing tags of the anchor (`a`) element. - text: Your `img` element should be nested within the anchor (`a`) element. The entire `img` element should be inside the opening and closing tags of the anchor (`a`) element.
testString: assert( document.querySelector('img').parentNode.nodeName === "A" ); testString: assert( document.querySelector('img').parentNode.nodeName === "A" );
@ -50,7 +50,7 @@ tests:
<main> <main>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
--fcc-editable-region-- --fcc-editable-region--
<img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."> <img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back.">
--fcc-editable-region-- --fcc-editable-region--

View File

@ -50,8 +50,8 @@ tests:
<main> <main>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</main> </main>
--fcc-editable-region-- --fcc-editable-region--
</body> </body>

View File

@ -58,8 +58,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
--fcc-editable-region-- --fcc-editable-region--
</main> </main>

View File

@ -51,8 +51,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
--fcc-editable-region-- --fcc-editable-region--
<section> <section>

View File

@ -49,8 +49,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
--fcc-editable-region-- --fcc-editable-region--
<section> <section>

View File

@ -43,8 +43,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
--fcc-editable-region-- --fcc-editable-region--

View File

@ -50,8 +50,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -47,8 +47,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -43,8 +43,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -50,8 +50,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -44,8 +44,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -44,8 +44,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -46,8 +46,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -40,8 +40,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -48,8 +48,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -44,8 +44,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -52,8 +52,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -44,8 +44,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -51,8 +51,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
--fcc-editable-region-- --fcc-editable-region--
<section> <section>

View File

@ -56,8 +56,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -50,8 +50,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -54,8 +54,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -54,8 +54,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -46,8 +46,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -46,8 +46,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -46,8 +46,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -42,8 +42,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -44,8 +44,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -46,8 +46,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -64,8 +64,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -50,8 +50,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -44,8 +44,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -48,8 +48,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -48,8 +48,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>
<h3>Things cats love:</h3> <h3>Things cats love:</h3>

View File

@ -52,8 +52,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>
<h3>Things cats love:</h3> <h3>Things cats love:</h3>

View File

@ -48,8 +48,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -54,8 +54,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -63,8 +63,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -54,8 +54,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -56,8 +56,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -37,8 +37,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -62,8 +62,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -42,8 +42,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -52,8 +52,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -52,8 +52,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -52,8 +52,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -48,8 +48,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -44,8 +44,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -45,8 +45,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -52,8 +52,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -47,8 +47,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -51,8 +51,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -49,8 +49,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>

View File

@ -47,8 +47,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>
@ -119,8 +119,8 @@ tests:
<section> <section>
<h2>Cat Photos</h2> <h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos --> <!-- TODO: Add link to cat photos -->
<p>Click here to view more <a target="_blank" href="https://www.freecodecamp.org/cat-photos">cat photos</a>.</p> <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
<a href="https://www.freecodecamp.org/cat-photos"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a> <a href="https://freecatphotoapp.com"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
</section> </section>
<section> <section>
<h2>Cat Lists</h2> <h2>Cat Lists</h2>