Build a Product Landing Page- Email error

Tell us what’s happening:
I keep getting the error " When I click the #submit element, the email is submitted to a static page (use this mock URL: freecodecamp .com/email-submit)."

The thing is i put the “action” with the link above in the form, in the input and the submit button and it always gives me this error. Also when i click on the submit button it goes to another page with the 404 error.

Your code so far
https://codepen.io/Sebolz/pen/wvaOYPv

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:74.0) Gecko/20100101 Firefox/74.0.

Challenge: Build a Product Landing Page

Link to the challenge:

just below it it explains why the test is failing
right now there is written The #email input should have a name attribute

I dont understand what that means.

When you create your input, you need to put name for it, for example:
<input type=“email” name=“email” id=“email”>
You can name is as you want