Submit Button problems

Tell us what’s happening:
I am trying to creat a submit button and this is my code that is not working. Can someone please tell me what I’m doing wrong?? Thank you!

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>

<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">
<button type=“Submit”></button>
<input type="text" placeholder="cat photo URL">
</form>```
**Your browser information:**

Your Browser User Agent is: ```Mozilla/5.0 (Linux; Android 7.0; SAMSUNG SM-G930T Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/6.4 Chrome/56.0.2924.87 Mobile Safari/537.36```.

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

When asking for help, try not to say its not working, its probably the most vague you could possibly be, leaving it to others to first figure out the following:

  1. What is actually happening
  2. What you actually want
  3. And finally, what is actually wrong.
    Yes this is help for an existing challenge, but most people don’t want to fire up the challenge to see what you have right in-front of you.

You could also offer some of the following to help those trying to help.

  1. What you have already tried
  2. What you think might be the issue,
  3. What you already looked up.

Now to what I think is the issue. Your input tag needs a name attribute, so when you submit the form using the submit button (make the type submit, all lower case, this is more of a best practice as HTML-tags aren’t case sensitive). So your two lines should look like this:

<button type="submit>submit</button> <!-- should also add a name so users know what this is -->
<input type="text" name="url" placeholder="cat photo URL">