Question: Which tag is used to link an external CSS file to an HTML document in the head section?
A
B
C
D
<link>
B
<style>
C
<script>
D
<meta>
Note: Not available
<html> <head> <title>index</title> </head> <frameset> <frame src="page1.htm" /> <frame src="page2.htm" /> <frame src="page3.htm" /> </frameset> </html>
<html> <head> <title>index</title> </head> <body> <frameset> <frame src="page1.htm" /> <frame src="page2.htm" /> <frame src="page3.htm" /> </frameset> </body> </html>
<html> <head> <title>index</title> </head> <body> <frameset> <frame href="page1.htm" /> <frame href="page2.htm" /> <frame href="page3.htm" /> </frameset> </body> </html>
<html> <body> <frameset> <frame href="page1.htm" /> <frame href="page2.htm" /> <frame href="page3.htm" /> </frameset> </body> </html>