Project#4: Technical Documentation: HTML. Looking for Feedback

Hey again everyone! Just finished the 4th project. I remade a small portion of wc3school website on HTML. Would like to hear everyone’s feedback on improvement and mistakes I missed. Thank you!

Looks good @ltommylel. Some thing to revisit;

  • Don’t use the <br> element to force line breaks.
  • 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;
   }

The following is just a suggestion. Usually HTML tags are written in lower case. You can find editors that will show tags as not being closed properly. Such would be the case for line 84 in your code where and opening tag <Strong> and a matching closing tag </strong>. There’s nothing wrong, it won’t cause the code to compile incorrectly but just something you should be aware of. Line 84 isn’t the only place you’ve done this.

Thank you @Roma. I have removed all the br and fixed all the Strong and replace them with lowercase s. That was a result of me being trigger happy with copy and paste.

1 Like