Problem Statement
Describe the difference between inline, internal, and external CSS. Which one is best for large projects?
Explanation
Inline CSS applies directly to elements. Internal CSS is written in the head tag using <style>. External CSS is stored in a separate file linked with <link>. External is best for scalability and reusability — a frequent interview topic.
Code Solution
SolutionRead Only
<link rel="stylesheet" href="style.css">
