Learn HTML by Building a Cat Photo App - Step 14

Tell us what’s happening:
Describe your issue in detail here.

Step 14

Add a target attribute with the value _blank to the anchor (a) element’s opening tag, so that the link opens in a new tab.
Your code so far

See more cat photos in our gallery.

```html

CatPhotoApp

Cat Photos

  <p>See more <a href _blank ="https://freecatphotoapp.com" >cat photos</a> in our gallery.</p>
  <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
</main>
```

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36 Edg/112.0.1722.48

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

Link to the challenge:

Your anchor element should have an href attribute and also a target attribute, with the value ‘_blank’.
You can add multiple attributes to an element by separating them with spaces, but the syntax for each should be attribute="value". Do not edit the existing href attribute.

EXAMPLE:

<div class="container" id="main-section">Content</div>