Learn HTML by Building a Cat Photo App - Step 14

Tell us what’s happening:
How do I insert a target attribute with the value “_blank”?

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->

<!-- User Editable Region -->

      <p>See more <a href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p> <a target="_blank">

<!-- User Editable Region -->

      <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
    </main>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36

Challenge: Learn HTML by Building a Cat Photo App - Step 14

Link to the challenge:

You can add multiple attributes to the same element, inside the element’s opening tag, separating them with spaces.

EXAMPLE:

<p class="bold" id="description">This is a paragraph element with two atttributes</p>

The target attribute should be added inside the anchor element’s opening tag, next to the href attribute.

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