Adding a Submit button in HTML

Tell us what’s happening:
I think I have the right solution but I am unable to pass the test.

Your code so far

    <form action="/submit-cat-photo">
    <input type="text" placeholder="cat photo URL"<button type="submit">Submit</button>
  </form>   

<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 type="text" placeholder="cat photo URL"<button type="submit">Submit</button>
</form>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Safari/537.36.

Challenge: Add a Submit Button to a Form

Link to the challenge:

Welcome to the forum, @ibrahim4y3 !
Your element appears to be inside your element. You should be sure to add as a separate element.

[quote="ibrahim4y3, post:1, topic:405589"]
<input type="text" placeholder="cat photo URL"<button type="submit">Submit</button>
[/quote]

Hi!

You missed closing the input tag by adding >

<input type="text" placeholder="cat photo URL"> <button type="submit">Submit</button>