Finished my Technical Documentation project

Hi coders, I hope you having a wonderful day. :grinning:

I just finished my technical documentation project, and I would’ve like to have some feedback from you.

The project was easy except the part of the nav-bar. The positioning part was a little bit frustrated because I couldn’t handle the fixed position. So, I learned there is a new positioning called sticky which from was easier than fixed position.

Also, I learned how create a custom scrollbar where I can change the scroll width and its color.

This is the project link

Well done. I like the color choice. The code seems to be well organized and easy to read.
The only thing i think you should optimize is this font loading links:

   <link href="https://fonts.googleapis.com/css?family=Slabo+27px" rel="stylesheet">
  <link href="https://fonts.googleapis.com/css?family=Francois+One" rel="stylesheet">
  <link href="https://fonts.googleapis.com/css?family=Anton" rel="stylesheet">
  <link href="https://fonts.googleapis.com/css?family=Fira+Sans" rel="stylesheet">

There is no need to make four googliapis calls when you can load all necessary fonts in one request like:

<link href="https://fonts.googleapis.com/css?family=Lato|Open+Sans|Roboto" rel="stylesheet">

Happy coding

Thank you, @sorinr for your feedback on my project and I appreciate it.

I will take your advice in consideration for the next projects.

Happy coding to you too.