Which of the following is true about linking multiple CSS files using multiple tags?
A). A. Only one CSS file can be linked using the <link>
tag.
B). B. Multiple CSS files can be linked, but only one will be applied.
C). C. Multiple CSS files can be linked, and their styles will be combined and applied.
D). D. Multiple CSS files cannot be linked in HTML documents.
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
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.
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
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>
What is the primary purpose of using the <link>
tag to link CSS stylesheets in HTML?
A). A. To apply CSS styles inline
B). B. To define CSS styles within the HTML file
C). C. To link an external CSS file to the HTML document
D). D. To embed CSS styles directly into the HTML document
How can you include comments in an external CSS file?
A). A. /* This is a comment */
B). B. // This is a comment
C). C. <!-- This is a comment -->
D). D. <!-- This is a comment -->
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 rel attribute in the <link>
tag when linking CSS stylesheets?
A). A. It specifies the relationship between the HTML file and the CSS file.
B). B. It defines the location of the CSS file.
C). C. It sets the rendering mode for the CSS file.
D). D. It determines the MIME type of the CSS file.
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.