Multiple choice technology web technology

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

  1. In the <head> section

  2. At the top of the document

  3. In the <body> section

  4. At the end of the document

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

External stylesheets should be linked in the section using the tag. This allows the browser to load styles before rendering the page content, preventing flash of unstyled content. Placing it at the end of the document would delay styling.