Hello @matingholami
1- You URL has a redirect. Redirects affect performance and it’s good practice to avoid them whenever possible.
2- You have a total of 66 requests. This means that for your page to load, a browser has to download 66 separate items.
3- You have multiple CSS files. it’s good practice to join up all of your CSS into one file. IT’s even better if you reduce all the CSS to the bare minimum and then just add it all inline at near the very top of your <head> section.
4- You have almost 20 separate Java scripts files on the page. Think of theses as tiny programs that you are asking every visitor to download. Downloading 20 separate scripts causes a delay because for the most part, when a browser encounters a script, it stops downloading the rest of the page until the script is executed. – if you want even more performance gain, eliminate all the js files you don’t need, then combine the ones you have left, then add all of them to the footer of the page. That way, the page will load everything, and then the browser will worry about js when the visitor is busy enjoying your content.
Hope this helps.