In web development, CSS (Cascading Style Sheets) is essential for defining a webpage's visual presentation. There are three main ways to apply CSS to HTML: inline, internal, and external. Each method has its use cases and best practices.
Inline CSS involves applying styles directly to individual HTML elements using the `style` attribute. While not recommended for large-scale styling due to its lack of scalability and maintainability, inline CSS can be valid for quick styling adjustments on specific elements.
Example: