1
HTML/CSSIntermediate#css#performance
Critical CSS is the minimal set of styles needed to render above-the-fold content, inlined directly in the <head> so the browser can paint immediately without waiting for the full external stylesheet to download, while the rest loads asynchronously.
<head> <style>/* inlined critical styles for header/hero */</style> <link rel="preload" href="main.css" as="style" onload="this.rel='stylesheet'"> </head>