HTML/CSS - 4
HTML/CSS - 4: Colors & Inline Styles
Time to make it colorful! Use the style attribute to change text color, background color, and font size.
👀 Show Solution
<h1 style="color: #00ff9d; font-size: 48px;">Big Heading</h1> <p style="background-color: #111; padding: 20px;">Colored paragraph</p>
