Is there a method to incorporate an external CSS file, but have it downloaded and parsed only after the main content of the website has finished loading?
This scenario specifically applies to the footer of a website, where the CSS should not hinder the loading of the main sections of the page. One option is to inline the CSS code in the HTML file, however, for better organization, I prefer not to do so. Is using a PHP include the only solution for this situation?
The same question also applies to JavaScript.