Report Bug
Qus : Where in an HTML document is the correct place to refer to an external style sheet?
Qusएक एक्सटरनल स्टाइल शीट को संदर्भित करने के लिए HTML दस्तावेज़ में सही जगह कहाँ है?

A. In the section
B. At the end of the document
C. In the section
D. Any Where in a Page


Solution
C. In the <head> section



Explanation

The correct place to refer to an external style sheet in an HTML document is within the <head> section. You use the <link> element with the rel attribute set to "stylesheet" and the href attribute pointing to the location of your external CSS file.




Report Bug