🎨CSS is used for website layout and design, as opposed to HTML which is used for creating the structure of a website.
🔢There are three main ways to add CSS styles to an HTML file: inline, internal, and external.
🖍️Inline CSS should be avoided as it mixes presentation and styling in the HTML code.
📝Internal CSS is better than inline CSS, but it's still not recommended as styles are limited to one HTML file only.
🌐External CSS is the most common and recommended way, allowing styles to be used across multiple HTML files.