Technical documentation page29

i am complete the techinal documentation page now. hope you guys goes throught my project and give feedbacks to improve my page more effeciently

1 Like

@sammm29, Good work!
And you can make it better,
Check if you can add some padding to all sides (top, right, bottom, left) in the main content area

1 Like

Sure I will on that asap …Thanks for feedback :grin:

1 Like

Your page looks good @sammm29. 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 HTML coding errors you should be aware of and address.
  • Don’t use <br> to force line breaks or spacing. That’s what CSS is for.
    • Nest multi-line <code> snippets in <pre> </pre> tags in HTML to preserve whitespace and line breaks. Or you could do
code {
  white-space: pre-line;
}

in CSS and skip the <pre> tag in HTML.

  • Make the page responsive. There’s a horizontal scrollbar on smaller screens.
1 Like

thanks buddy for help i have solve much errors because of you also your white spacing technique was great…