Nest an anchor element with in a paragraph

help idk where I’m messing up

   **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>View More
 <a href='http://www.freecatphotoapp.com'>cat photos</a>
 </p>
 
<img class="smaller-image thick-green-border"scr="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its backs. ">

<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-tex">Purr jump eat the grass rip the couch scratched sunbathe, shed everyhwere rip the couch sleep in the fluffy fur catnip scratched.</p>

   **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Safari/605.1.15

Challenge: Nest an Anchor Element within a Paragraph

Link to the challenge:

incorrect : http
correct : https

1 Like

Why does your code look so much different then the starter code?
The starter code doesn’t have any css in it

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