I have built a static website which i am currently hosting
I have given my current order of linking css , JavaScript and all other files in the html code below
I would appreciate a lot if someone can confirm if i am placing them all at the most ideal place . Consider the best loading speed and possible override. Not just regarding placement , any recommendations to improve overall performance is also welcome
As you can see there are total 9 linkings happening in my html , lemme give short summary of them
Head - 1) Google Font 2) My Main CSS File 3) Font awesome Css file 4) Jquery Library 5) JS file for modal windows 6) JS file for navigation bar
Body - Those 3 you see at bottom are related to the navigation bar as well
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Website Name</title>
<link href="https://fonts.googleapis.com/css?family=Lato|Raleway&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/styles.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script type="text/javascript" src="js/modal.js"></script>
<script src="js/responsive-nav.js"></script>
</head>
<body>
< -- Content -->
<script src="js/fastclick.js"></script>
<script src="js/scroll.js"></script>
<script src="js/fixed-responsive-nav.js"></script>
</body>
</html>