Your page has a print stylesheet that's loading synchronously, which can block the rendering of your page even though it's only needed when users print. Print stylesheets should be loaded in a way that doesn't impact the initial page rendering performance.
<link rel="stylesheet" href="print.css">
Add the `media="print"` attribute to ensure the stylesheet only loads when needed for printing.
<link rel="stylesheet" href="print.css" media="print">
By specifying `media="print"`, the browser won't block page rendering to load the print stylesheet, as it's only needed when the user actually prints the page. This improves initial page load performance.
This issue can affect your site's search engine rankings and user experience. Addressing it promptly helps ensure optimal performance and visibility in search results.
Black SEO Analyzer automatically checks for this warning during site analysis, along with hundreds of other technical SEO issues.
Choose the license that fits your needs and start getting the deep, actionable insights you deserve.