Have problem adding a submit button

Tell us what’s happening:

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

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 8.1.0; Infinix X606C) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Mobile Safari/537.36.

Challenge: Add a Submit Button to a Form

Link to the challenge:
https://www.freecodecamp.org/learn/responsive-web-design/basic-html-and-html5/add-a-submit-button-to-a-form

Please show me an example

You properly closed your closing tag </button>, but not the opening tag. You also need to add text after you close your opening tag so it shows on the page what the button will say. Usually the button says “Submit”, but it could easily say “Click Me!” or really anything. That’s your choice, but it does need to be clarified.

Here’s the example submit button given in the challenge.

<button type="submit">this button submits the form</button>