To have my submit button

Tell us what’s happening:

Please help I’m really struggling to get this done.
I keep trying but yet not moving.

Your code so far


<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>
   <input type="text" placeholder="cat photo URL">
 </form>
<form>  
<button typeSubmit="Submit">this button submits the form </button>
</form> 

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 8.1.0; TECNO LB7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Mobile Safari/537.36.

Challenge: Add a Submit Button to a Form

Link to the challenge:

Hi Benjamin,

when you try to run the tests, it tells you:
Your submit button should have the attribute type set to submit (check spelling and avoid uppercase).
And your submit button should only have the text Submit. You have to stick exactly to the given text, if not the test won’t pass.

I hope this helps!