Technical Documentation Page feedback and review

Would you please review the project (Technical Documentation Page) and give me the feedback.

https://codepen.io/AbdulrahmanF/full/YzXaORY

Your page looks good @Abdulrahman but there is something you need to revisit and correct.

  • Do not use the <br> element to force spacing. Same with using &nbsp;
    • For what you want to do you can either 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; 
}

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