The text-shadow property represents the shadow of the text
For Example
<style>
.example-CSS-Text-Shadow-paragraph{
text-shadow: 2px 2px 8px orange;
}
</style>
<p class="example-CSS-Text-Shadow-paragraph">this text with shadow.</p>
Output
this text with shadow.
