I’ve created new p element. But there’s an error saying’ add new p element’ please help

Tell us what’s happening:

Your code so far


<h2>CatPhotoApp</h2>
<main>
<p>View more <a href="http://freecatphotoapp.com" target="_blank">cat photos</a></p>

<img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back.

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

Your browser information:

User Agent is: Mozilla/5.0 (iPhone; CPU iPhone OS 13_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.4 Mobile/15E148 Safari/604.1.

Challenge: Nest an Anchor Element within a Paragraph

Link to the challenge:

Hello there.

If you take a look at the automatic syntax highlighting of your code, you will see a nice hint as to what is the problem.

Hope this helps

It is more obvious in the forum code, but you can see it in the highlighting of the element characters.

I Put the below information like this

<h2>CatPhotoApp</h2>
<main>
<p>Click here to view more <a href="#">cat photos</a>.</p>

<a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>

<p>Things cats love:</p>
<ul>
  <li>cat nip</li>
  <li>laser pointers</li>
  <li>lasagna</li>
</ul>
<p>Top 3 things cats hate:</p>
<ol>
  <li>flea treatment</li>
  <li>thunder</li>
  <li>other cats</li>
</ol>
<form action="/submit-cat-photo">
  <input id="indoor" type="radio" name="indoor-outdoor">
  <label for="indoor">Indoor</label>
  <input id="outdoor" type="radio" name="indoor-outdoor">
  <label for="outdoor">outdoor</label>
  
  <input type="text" placeholder="cat photo URL" required>    
  <button type="submit">Submit</button>
</form>
</main>
<!-- 
Add a pair of radio buttons to your form. One should have the option of indoor and the other should have the option of outdoor. Both should share the name attribute of indoor-outdoor.
-->

but its saying
// running tests Each of your two radio button elements should be nested in its own

label

element. // tests completed

Its saying

// running tests Each of your two radio button elements should be nested in its own

label

element. // tests completed

so what do i do please can some one help me

In the future, please create your own topic when you have specific questions about your own challenge code. Only respond to another thread when you want to provide help to the original poster of the other thread or have follow up questions concerning other replies given to the original poster.

The easiest way to create a topic for help with your own solution is to click the Ask for Help button located on each challenge. This will automatically import your code in a readable format and pull in the challenge url while still allowing you to ask any question about the challenge or your code.

Thank you.