Answer: To refer .css file in the web page, use <link> tag. Generally it is suggested to keep this inside the <head></head> tag.
<link href="/css/mystyle.css" type="text/css" rel="stylesheet" />
Notice that the type attribute value should be "text/css" and rel attribute value should be "stylesheet".
Asked In: Many Interviews |
Alert Moderator