Text Shadow

The text-shadow property adds shadow to text.

Preview

Code

<style>
h2{
color:#2563eb;
text-shadow:2px 2px 4px rgba(0,0,0,0.3);
}
</style>

<h2>Text Shadow</h2>

More CSS Shadows Examples (8)