Any feedback on "Technical Documentation Page"

Hi guys,
I am new here and I would appreciate any feedback on that project.
please review and let me know if you see anything that I should know about being a new programmer.

Great you applied what you learned into practice, but there is some little mistakes you have to correct, like the tittle it’s not positioned in right way. In general you did a good job.

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

  • The test script should be included, with all tests passing, when you submit your projects.
    • The test script being JavaScript would not go in the head element, it would go right before the closing body tag. Codepen is forgiving, in the real world any JS in the head will not run.
  • Don’t use the <br> element to force line breaks or spacing. That’s what CSS is for.
  • On a side note 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;
}
  • Make your page responsive. On smaller screens there’s a horizontal scrollbar.

Thank you . :slightly_smiling_face: