Multiple choice technology web technology

Where in an HTML document is the correct place to refer to an external style sheet?

  1. At the top of the document

  2. In the <head> section

  3. At the end of the document

  4. In the <body> section

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

External style sheets should be referenced in the section of an HTML document. This allows the browser to load and parse CSS before rendering the body content, preventing flash-of-unstyled-content and improving performance. Placing it elsewhere (options A, C, D) is incorrect practice.