Q. Which element is used in <HEAD> of an HTML/XHTML page, if we want to use an external CSS to decorate the page?
β
Correct Answer: (B)
<link>
Explanation: The tag <link> defines a link between a document and an external resource. Example:
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="style.css">