Nest an Anchor Element within a Paragraph HELP

The code doesn’t work. I dont know where i wrong

Thank you.

Your code so far

<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
<style>
  .red-text {
    color: red;
  }

  h2 {
    font-family: Lobster, Monospace;
  }

  p {
    font-size: 16px;
    font-family: Monospace;
  }

  .thick-green-border {
    border-color: green;
    border-width: 10px;
    border-style: solid;
    border-radius: 50%;
  }

  .smaller-image {
    width: 100px;
  }
</style>

<h2 class="red-text">CatPhotoApp</h2>
**<p>wiew more <a href="http://www.freecatphotoapp.com">cat photos</a></p>**

<img class="smaller-image thick-green-border" src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back. ">

<p class="red-text">Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
<p class="red-text">Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (iPad; CPU OS 11_2_2 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) CriOS/66.0.3359.122 Mobile/15C202 Safari/604.1.

Link to the challenge:
https://www.freecodecamp.org/challenges/nest-an-anchor-element-within-a-paragraph

<p>View more <a href="http://www.freecatphotoapp.com">cat photos</a></p>

By following the test cases this should be the desired block of code .

P.S… You have misspelled the View as wiew

Thank you so much for your help!!

You are welcome :wink: