Help me review my tech documentation Page

Hey @snc.diff. The link you provided is your tech documentation page and not product landing page. However, I like the tech documentation. It’s so simple and clean and I like the smooth scrolling effect and the hover animation for the left menu.
But your HTML code has some errors. Kindly validate it.
Happy Coding!

1 Like

oh sorry. I didn’t see it and thnkyou for your effort… :slightly_smiling_face:
I run w3c validator and only one warning is shown.

1 Like

Your page looks good @snc.diff. Some things to revisit;

  • It’s minor but there’s an extra angle bracket (>) at the end of line 150
  • Do not use the <br> element to force line breaks or spacing. That’s what CSS is for.
    • You can nest multi-line <code> snippets in <pre> </pre> tags in HTML to preserve whitespace and line breaks.
      Or skip the <pre> tag and do the following in CSS;
code {
  white-space: pre-line;
}
1 Like

The errors were shown to me when I used CodePen’s validator.