Exit tutorial


HTML Tutorial
Cascading Style Sheet Tutorials
Shadowed Text
With CSS, you can create text shadows on a page without using any images. This is great for drawing attention to a specific piece of content.

Here's a sample of shadowed text:

This text SHOULD have a shadow...

Here's how it's done...

<table style="filter:SHADOW(color=gray, strength=4)">
<tr><td>
<font style="font-family: Arial Black; font-size:18px; color: black;">
This text SHOULD have a shadow...
</font>
</td></tr></table>

[Back to the Stage 6 Index]