Answer & Solution
<link>.
													<link>  tag?
										<link>.
													
														Which attribute in the <style>  tag is used to specify the type of stylesheet being used?													
A). A. type
B). B. rel
C). C. src
D). D. href
What is the primary disadvantage of using inline styles?
A). A. Increased file size of the HTML document.
B). B. Difficulty in maintaining consistency across multiple elements.
C). C. Limited scope for applying complex CSS rules.
D). D. Slower rendering of web pages.
How do you link an external CSS file named 'styles.css' located in the same directory as your HTML file?
A). A.  <link src='styles.css' rel='stylesheet'>
B). B.  <link href='styles.css' type='text/css'>
C). C.  <link rel='stylesheet' type='text/css' href='styles.css'>
D). D.  <style src='styles.css'>
In HTML, which tag is used to define inline styles directly within the HTML document?
A). A.  <style>
B). B.  <link>
C). C.  <script>
D). D.  <css>
Which of the following HTML tags can be styled using CSS?
A). A.  <script>
B). B.  <meta>
C). C.  <header>
D). D.  <body>
Which CSS property is used to specify the font size of text?
A). A. text-size
B). B. font-size
C). C. size
D). D. font-style
Which of the following is an advantage of using external CSS files over inline styles?
A). A. Increased specificity of CSS rules.
B). B. Easier maintenance and updating of styles.
C). C. Faster rendering of web pages.
D). D. Inline styles allow for greater control over individual elements.
														Which of the following is true about the media attribute in the <link> tag when linking CSS stylesheets?													
A). A. It specifies the device resolution for which the stylesheet is intended.
B). B. It defines the type of media content the CSS rules apply to.
C). C. It sets the priority of the CSS file for loading.
D). D. It specifies the viewport size for applying responsive styles.
When should inline styles be preferred over external stylesheets?
A). A. When applying styles globally to multiple HTML documents.
B). B. When reusing styles across multiple elements within a single HTML document.
C). C. When applying styles to only a specific element or small set of elements.
D). D. When creating a complex layout requiring extensive CSS rules.
														What is the purpose of the type attribute in the <link> tag when linking CSS stylesheets?													
A). A. It specifies the MIME type of the linked CSS file.
B). B. It defines the rendering mode for the CSS file.
C). C. It sets the relationship between the HTML file and the CSS file.
D). D. It determines the location of the CSS file.