Having problems passing challange

Tell us what’s happening: mising two completion of task to complete challange

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>

<img class="smaller-image thick-green-border" src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back. ">                                                    <a "cat photos" a http://freecatphotoapp.com </a> 
<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 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36.

Link to the challenge:
https://www.freecodecamp.org/challenges/link-to-external-pages-with-anchor-elements

This is the important part of your above code:

<a "cat photos" a http://freecatphotoapp.com </a>

and this is the example from the challenge page:

<a href="http://freecodecamp.org">link to Free Code Camp</a>

Compare them carefully to try to see what yours is missing.

what is anchor text for. here is my revised code.

“cats photos”

sorry i forgot to put the dots.
<a href='http://freecatphotoapp.com'>"cats photos"</a>

any ways im missing my anchor text and i dont under anchor text

That’s right, just get rid of the " and s on cats.
cat photos, not "cats photos"

dont understand nesting

this is my code only misssing it says is that i should have a space after view more
?
<p view more </p> <a href="http://www.freecatphotoapp.com">cat photos</a>

I have revised the code it isnt letting me pass the challage because it says i need a space after “view more” i have a space any help would be appreciated.
<p view more </p> <a href="http://www.freecatphotoapp.com">cat photos></a>

Nearly.

You keep missing things like closing angle brackets in your element tags. You have to look quite closely at what you are submitting as it is often broken, and for browsers, these details matter.

It should look like this:

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

Notice I completed the first p tag with a > and I moved the other </p> after the link.

Having problems with the href = “#” putting it in the right place iguess ihave got 2 out of the 3 correct except for the href. please help.here is a copy of my code.
<a> href= #<img class="smaller-image thick-green-border" src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back. "></a>

revised code im geting closer but still missing something

I figured it out thanks though.