Submit Button Error - Stuck

I’m unable to pass the Basic HTML and HTML5: Add a Submit Button to a Form test. As far as I can tell (from checking the available hints and other posts), I have the correct HTML markups in place. No matter what I do, I keep getting the error message, “Your submit button should only have the text ‘Submit’.” I have nothing else other than “Submit”. Any help?

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

Welcome, cibomatto.

Your code passes for me. So, some things you can try:

  1. Refresh the browser (copy your code, just in case)
  2. Clear your browser cache
  3. We recommend the latest stable release of Chrome for the fCC curriculum.
  • As an aside, many users face issues because they have browser extensions which affect the tests.

Also, for future posts, if you have a question about a specific challenge as it relates to your written code for that challenge, just click the Ask for Help button located on the challenge. It will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

Thank you!! I thought I was going crazy or missing something very obvious.

I was using Safari. Switching to Chrome solved the problem.

Noted for future posts. Thank you again for your help.