Last active
April 1, 2019 08:13
-
-
Save Luxato/926eef493f3ec56ec745282d5cf0885d to your computer and use it in GitHub Desktop.
Deferring CSS assets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<!-- This will make the CSS load asynchronously, and also it takes care of users without javascript --> | |
<link rel="stylesheet" href="styles.css" media="none" onload="if(media!='all')media='all'"> | |
<noscript><link rel="stylesheet" href="styles.css"></noscript> | |
</head> | |
</html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment