Problem Statement
Which HTML tag is used to include an external CSS file?
Explanation
We use the <link> tag inside the head section to attach an external CSS file. Example: <link rel='stylesheet' href='style.css'>. This question checks if you understand how external styling works in real projects.
Code Solution
SolutionRead Only
<head> <link rel="stylesheet" href="style.css"> </head>
