Nesting form action element

i am unable to proceed further, don’t know where i am going wrong . nesting part is creating problem.

<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= "https://freecatphotoapp.com/submit-cat-photo"> <input type="test" placeholder="cat photo URL" </form>
</main>
*
      
<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= "https://freecatphotoapp.com/submit-cat-photo"> <input type="test" placeholder="cat photo URL"
</main> </form>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36.

Challenge: Create a Form Element

main closing tag should come after form closing tag

You have closed the form after the menu, here you can see the error

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

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

         <p> Things that cats love: </p>
         <ul>
           <li> cat bite </li>
           <li> laser pointers </li>
           <li> lasagna </li>
         </ul>
         <p> Top three things cats hate: </p>
         <ol>
           <li> flea treatment </li>
           <li> thunder </li>
           <li> other cats </li>
         </ol>
         <form action = "https://freecatphotoapp.com/submit-cat-photo">
         <input type = "text" placeholder = "URL of the cat photo">
         </form>
</main>

In short, this is how it should be

 <form action = "https://freecatphotoapp.com/submit-cat-photo">
     <input type = "text" placeholder = "URL of the cat photo">
     </form>

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

You can post solutions that invite discussion (like asking how the solution works, or asking about certain parts of the solution). But please don’t just post your solution for the sake of sharing it.
If you post a full passing solution to a challenge and have questions about it, please surround it with [spoiler] and [/spoiler] tags on the line above and below your solution code.

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

1 Like

Thanks, sorry, I didn’t know they had that rule, I’ll try not to make the same mistake.