Which of these is a render-blocking resource by default?
- A An external stylesheet in the head
- B An image
- C A script with defer
- D A font file
Answer
An external stylesheet in the head
The browser will not paint until it has the CSSOM. Inlining critical CSS and loading the rest asynchronously improves first paint.





