Give project feedback on my product landing page

please give me suggestions on my codepen

i working real hard to get things

Not bad for a first time
But what does the second one close?

}
}

and what is?

i{

Looks very good to me but logo is not there, i guess because of google drive.

yes it is because of google drive :sweat_smile: :sweat_smile:

can you elaborate i am not understanding i{

for
}
}

@media (max-width:768px)
{
#p-grid{
display: flex;
flex-direction: column;
width: 100%;
}
#nav-bar{
display: flex;
font-size: 1.5rem;
width: 100%;
justify-content:flex-end;
}
} ----media query ends here so i putted }

I like your design. Good job :+1:

men it looks so beautiful !! I love it .
you can make some improvement on it like:
html {
scroll-behavior : smooth (if i remember …)
}
and also u can remove the outline in the input field :

input {
outline: none;
}

Your page looks good @venkateshpensalwar. Some things to revisit;

  • Run your HTML code through the W3C validator.
    • Since copy/paste from codepen you can ignore the first warning and first two errors.
    • There are coding errors you need to address.
  • Don’t use in-line styling. Use external styling.
  • Don’t use <br> to force line breaks. Use CSS
  • Check to see if the email field has been filled in correctly. Show an error if not when the submit button is clicked. You learned how to do this when you did your survey form.