HTML/CSS Technical Documentation Project

Hey guys! Just came back to FCC after a long hiatus caused by school and work. Finally came back and finished my Technical Documentation Page. Let me know what you guys think, I am open for all types of feedback :slight_smile: https://codepen.io/MellyX-The-Dev/pen/KKgGQRo

Welcome back @JayX97. Your doc looks good. Some things to revisit;

  • Do not use the <br> element 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 skip the pre element and do the following in CSS;
code {
white-space: pre-line;
}
  • Make your page responsive. Remember, the R in RWD stands for Responsive
    • There’s a horizontal scrollbar on smaller screens

Got it :slight_smile: Thank you so much

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.