I am working it with 3 days and I am not able to debug, I have done all the story of the fcc product landing page but not able to pass more then 11 tests.
my code pen link
https://codepen.io/abhishek9910/pen/abpMEMg
I moved your post into it’s own topic.
1 Like
Each .nav-link element should have an href attribute : expected false to equal true
Your code:
<a class="nav-link"> <button type="#text-div" class="btn btn-dark">Free trial</button> </a>
#email is not defined : expected null to not equal null
Your code:
<input type="email" class="form-control" id="exampleFormControlInput1 " id="email" placeholder="name@example.com" required>
You have two different ids on the same element.
The #email input should have a name attribute : expected false to equal true
Add the missing name
attribute to the email input
element.
in your code, I see just a closing tag </html>
but I don’t see <html>
tag …
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.