ProductLandingPag

Hello everyone,
thanks for your time and help.I don’t know what is missing in my project so if someone could check I’ll be thankful.

Link:[https://codepen.io/ph-cm/pen/gOXVNVQ]

Regards,
Pedro

Just two changes are required in your html file,

  1. inside #header, name the id of image as #header-img, like this-

> <img src="https://cdn.freecodecamp.org/testable-projects-fcc/images/product-landing-page-logo.png" width="300px" height="43" alt="logo image" id="header-img">

  1. finally when submitting the email, inside the form, add name attribute to your input element where email id will be entered like this-

> <input id="email" name="email" type="email" placeholder="Enter your email" required>

1 Like

@siva_kishor Please try to help people without posting solution code.

@pedruo Did you read the error message (click the red button)? It is telling you what the problem is.

2 Likes

i dind’t know about that error message,thank you for your time

that was grarifing,thank you

No problem :slight_smile:
FYI, I hope you know running tests after/while doing your projects. When you click on the tests which shows in red color in case of errors, it will display all the errors in your code. Thus you can debug your code yourself.

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.