If HTML is the wooden frame of a house, CSS (Cascading Style Sheets) is the paint, wallpaper, and interior design. It makes the web beautiful.
How to target elements (e.g., 'p' targets all paragraphs, '.btn' targets a class).
What to change and how (e.g., 'font-size: 16px;').
Every element is a box with margins, borders, padding, and content.
Write CSS to style the HTML elements below!
<div class="container"> <h1 class="title">Hello CSS!</h1> <p class="text">Style me using the editor.</p> <button class="btn">Click Me</button> </div>
Which CSS property changes text color?