Which CSS property is used to add shadow to an element? code example
Example 1: Which CSS property is used to add shadow to an element?
"box-shadow" --"Text-shadow"_is_for_text_but_"box-shadow"_is_the_main_one--
Example 2: how to add shadow css
h1 {
text-shadow: 2px 2px;
}