I have a dout still i cant go to next level beacause of submit i cant understand

Tell us what’s happening:

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>Click here for <a href="#">cat photos</a>.</p>

<a href="#"><img class="smaller-image thick-green-border" alt="A cute orange cat lying on its back. " src="https://bit.ly/fcc-relaxing-cat"></a>
<button type="submit"> this button submits the form</button>
<form action="/submit a cat photo ">
   <input type="text submit" placeholder="cat photo URL">
   <button type="Submit"></button>
  
 </form>
i left spaces by <and> so you could see it
<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">
</form>

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36.

Link to the challenge:
https://www.freecodecamp.org/challenges/add-a-submit-button-to-a-form

i cant understand it still shows your submit button should have only “Submit” i dono where is the mistake can you guys please help meeeee

Mh…not sure about the issue ^^
This element

<button type=“submit”>

is missing from your code, at least the code you’ve posted.
You should add:

  1. a button ( <button></button>)
  2. a form containing the button (<form><button></button></form>)
  3. set some attributes of these components ( at least of the button)

Hope it helps,

-LyR-

should be <button type='submit'>Submit</button>
you are using a capitol letter in your type=‘submit’ and you havent added the text for the button between the button tags eg Submit