Failing to link submit button to a static page

Tell us what’s happening:
Hello guys, I’m failing in this point, can you please help me?

1 - I can’t link my submit button to a static page. Already searched the internet but it seems I don’t know how to…

     <input
      id="submit"
      type="submit"
      onclick="https://www.freecodecamp.org/email-submit"
      value="GET STARTED";/>

Also, I’m getting an issue that doesn’t change anything on the points described by the challenge but is pissing me off a lot.

At my footer I inserted a grid with 2 rows. The top row has the links and bottom row has the copyright text. So far so good. But when I apply background color the color somehow avoid the items.
This is what my footer looks like:

  <footer id="footer">
    <nav>
      <ul class="footer">
        <li><a href="#">Privacy</a></li>
        <li><a href="#">Terms</a></li>
        <li><a href="#">Contact</a></li>
      </ul>
    </nav>
    <div class="footer">Copyright 2016, Original Trombones</div>
  </footer>

And the CSS for it:

footer{
  display: grid;
  grid-auto-rows: 30px;
  grid-template-areas: "links" "copyright";
  justify-content: right;
  background: hsl(0,0%,80%);
}

.footer{
  background: hsl(0,0%,80%); /* ONLY ADDED IN PRINT 2 */
}

Without the .footer background at the last part of the CSS this is what is looks like:

When I add that last part, this is how it becomes:
Nevermind, I can only add 1 print because I’m a new user but basically it colors the background around the links, including spaces in between them but not them.

Thanks for the attention, you guys are awesome!!

Your code so far

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.92 Safari/537.36.

Challenge: Build a Product Landing Page

Link to the challenge:

Easier to troubleshoot if you provide a link to your pen.

In a form, the action attribute specifies where the form data gets sent when submitting the form.

1 Like

Definitely! Sorry for that:

https://codepen.io/marcuscatan/pen/bGVNPvK

Guys, I didn’t manage to get my Action attribute to work, could someone please lend a hand?

Thanks in advance for the attention…

Click on the red button to see the failing message. It says “The #email input should have a name attribute : expected false to equal true”
You don’t have a name attribute.