JavaScript technical documentation page Feedback

Hey guys! can you check out my JavaScript technical documentation page and tell me what you think ?

JavaScript Tech doc Page

thank you :slight_smile:

1 Like

Looks very good to me.
Looking at the “JavaScript and Java” section, maybe add some left padding to your section-title class or center align the text.

1 Like

Wow i really liked that well done :clap: :clap: :clap:

I like your work, it looks too good. :clap:

Nice animated Header :+1:

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

  • Keep the test script when forking the pen (<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>).
  • The test script should be included, with all tests passing, when you submit your projects.
  • Your page passes 14/16 user stories. Click the red button to see which test(s) are failing and text to help you correct the issue.
  • 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 address.
    • And remember, an id must be unique within the document.
  • 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.

  • I’m not seeing your page the way you intend. You call font-family: 'Fredoka One', sans-serif; but you neither link or import it. You may have it loaded on your box, most won’t.