Non-clickable button problem

Hello everybody I am trying to finish my product landing page projecet but I have some problems please help me.
My product landing page link is here.

1)I can’t write an email to my email area.

2)I can’t click my “Contact us” button.

3)I wrote this code:

<form id="form" action="https://www.freecodecamp.com/email-submit">

But still I can’t pass twelfth task and I don’t know why.
( 12. When I click the #submit element, the email is submitted to a static page (use this mock URL: https://www.freecodecamp.com/email-submit)

@halilciftci hey,

For the first problem its because you title div is overlapping your input so you need to remove the height of 200px;

last problem you need to add a name attribute to your email input mate

1 Like

Hello there,

You have a few issues you need to resolve, and using the built-in Code Analyser in CodePen is useful to find them.

  • id values must be unique on any given page
  • if you view the error with the 12th task, it is very helpful:

The #email input should have a name attribute : expected false to equal true

  • there is a missing closing tag in your HTML.

Hope this helps

1 Like

Thanks guys I solved my first and second problem. I am still trying to find out why I can’t pass the twelfth task.