Select from following answers:- In the <body> section
- In the <head> section
- At the top of the document
- At the end of the document
- All Above
<Head> section is the right place to put all the CSS files which are external and we have to refer in our application.
For Example:-
<html>
<head>
<link rel="stylesheet" type="text/css" href="abc.css">
</head>
<body>
</body>
</html>
Here :- abc.css is an external style sheet.
Show Correct Answer
Asked In: Many Interviews |
Alert Moderator