30Days of HTML CSS

[30 Days of HTML CSS] Day 07 | Codedamn CSS Text Shadow Lab

하나둘세현 2023. 11. 23. 14:48
728x90

<!DOCTYPE html>
<html>
  <head>
    <title>Codedamn CSS Text Shadow Lab</title>
    <style>
      #main-heading {
        color: #ef534f;
        text-shadow: 2px 2px 4px #5f5f5f;
      }
    </style>
  </head>
  <body>
    <!-- Create the h1 tag and paragraph tag here -->
    <h1 id="main-heading">Codedamn CSS Lab</h1>
  </body>
</html>

 

text-shadow : offset-x offset-y blur-radius color

 

https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow

 

https://codedamn.com/challenge/30-days-of-html-css

 

30 Days of HTML CSS - Codedamn

Level up your coding skills with a daily coding challenge. Compete and share your progress every day and become a better developer.

codedamn.com

 

728x90