Interactive online courses HTML Academy
2026-03-09 12:57 Diff
  • index.html
  • style.css

HTML

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Multiple Shadows</title> <link rel="stylesheet" href="style.css"> </head> <body> <button class="btn" type="button">Button</button> </body> </html>

Thanks! We’ll fix everything at once!

You’ve gone to a different page

Click inside the mini-browser to shift the focus onto this window.

100%

Add two shadows to the button:

  1. Assign the first shadow a vertical offset of -5px, feathering of 10px, stretch of -3px, and the color: #3498db.
  2. Assign the second shadow a vertical offset of -5px, feathering of 10px, stretch of -3px, and color: #2ecc71.

The horizontal offset for both shadows should be zero.