select the correct answer. marie uses a css file to style the elements in her html document. what is the…

select the correct answer. marie uses a css file to style the elements in her html document. what is the advantage of using an external css file to style html elements? a. it alleviates the need for scripting files. b. it helps structure the content. c. it cuts down on the code in the html file. d. it is easier to add functionality to html elements. e. it helps store and transfer data.
Answer
Brief Explanations:
Using an external CSS file separates styling from HTML content. This reduces the amount of code within the HTML file, making it cleaner and more maintainable. It doesn't eliminate the need for scripting files (which are for functionality like JavaScript), doesn't structure content (HTML tags do that), doesn't add functionality to HTML elements (scripts do that), and isn't for storing and transferring data (databases and APIs handle that).
Answer:
C. It cuts down on the code in the HTML file.