🎨
Case 1

The heading that won't turn orange

Beginner
🎫 Client ticket

The welcome heading is supposed to be bright orange, but on the live site it's just plain black. The owner has tried refreshing and clearing the cache — nothing changes the colour.

🔧 Your fix
HTML CSS
👁 Live preview
Hint: Look very closely at the property name inside the h1 rule. Is it spelled the way CSS expects? CSS is American English.
The fix:
h1 {
  color: #FF6B00;
}
  • ·The h1 uses the correct CSS property name

✅ Fixed! Case closed.

You found the faulty line and corrected it — exactly what real debugging feels like.
Why it broke: CSS only understands color (American spelling). colour isn't a real property, so the browser silently ignores the whole line — which is why nothing happened. Invalid properties don't throw errors; they're just skipped. Always double-check spelling when a style 'does nothing'.