Question
Which kind of CSS styling can cover an entire website with multiple pages?
A. inline
B. internal
C. applied
D. external
A. inline
B. internal
C. applied
D. external
Answers
GPT-5 mini
D. external
External CSS (a separate .css file linked into each page) can be used to style an entire website across multiple pages. Inline styles affect only a single element; internal styles (in a <style> block) apply only to that one HTML page. "Applied" is not a standard CSS type.
External CSS (a separate .css file linked into each page) can be used to style an entire website across multiple pages. Inline styles affect only a single element; internal styles (in a <style> block) apply only to that one HTML page. "Applied" is not a standard CSS type.