Q
How do you link an external CSS file named 'styles.css' located in the same directory as your HTML file?

Answer & Solution

Answer: Option C
Solution:
To link an external CSS file named 'styles.css', you use the <link> tag with the href attribute pointing to it.
Related Questions on Average

Which of the following statements is true regarding the order of precedence in CSS styling?

A). A. Inline styles have the lowest precedence and are overridden by external stylesheets.

B). B. External stylesheets have the highest precedence and override inline styles.

C). C. Styles declared later in the HTML document take precedence over styles declared earlier.

D). D. Styles with more specific selectors override styles with less specific selectors.

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

Which attribute is used in the <link> tag to specify the location of the external CSS file?

A). A. src

B). B. rel

C). C. href

D). D. type

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>

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 -->

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.

How do inline styles differ from external stylesheets linked using the <link> tag?

A). A. Inline styles are stored in a separate CSS file.

B). B. Inline styles override external stylesheets.

C). C. Inline styles are declared within the HTML document's <style> tag.

D). D. External stylesheets cannot be linked using the <link> tag.

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 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.