Definition: CSS (Cascading Style Sheets) is a language used to style and layout web pages — colors, fonts, spacing, animations, responsiveness, etc.
/* Three ways to add CSS */
Inline: <h1 style="color: blue;">Hello</h1>
Internal: <style> h1 { color: blue; } </style>
External: <link rel="stylesheet" href="style.css">