Product Landing Page - feedback welcomed

Hello everyone. I’d like to hear your thoughts and advises on my project. First of all, just let me tell you that I write in VSCode and just copy HTML and CSS into Codepen, so far haven’t noticed any problems. Thank you for any input in advance :slight_smile:

Here’s the project:
https://codepen.io/macewicz/full/yLJrgoB

1 Like

Hey @Shan1!

I think your page looks great. I couldn’t find any errors in your html or css. In codepen you don’t need to include the head section or html tags. That is all taken care of for you in codepen. If you need to include links in the head then you can add it in the settings.

One optional thing you can add is the smooth scroll feature in css.

html{
  scroll-behavior:smooth;
}

Keep up the good work!

Happy coding!

Your page looks good @Shan1. Something to revisit;

  • Codepen provides the boilerplate for you. It only expects the code you’d put within the body element in HTML. (No need to include the body tags). For anything you want to add to the <head> element click on the ‘Settings’ button, then HTML and add it into the ‘Stuff for <head>’ box.
    • It’s fine to code in VSC. When copying to codepen just copy what’s in the body element.
    • In VSC, the test script would be placed right before the closing body tag.

Looks good, button and input elements can be styled better.