
Design is an essential element of any web page. As much as you need a high-quality content to keep visitors interested in your site, you must also have an attractive and well designed web page in order to capture the attention of many web explorers. There are
various programs you can utilize in the process of
designing your web. One of them is Cascading Style Sheets. This tool not only enables you to incorporate some special effects you want, but it also makes the job easier for you. Still, you can find that there is a vast resource of design tricks under this program. Perhaps, one basic trick that is worth learning is putting text shadows.
If you notice, CSS level 3 contains a tool named "
text-shadow" that allows you to put a shadow to every letter or text of your preference. The simplest code for this command would appear like this:
<! - CODE SAMPLE - !>
h3 {text-shadow: 0.1em 0.1em #333}
<! - END SAMPLE - !>
</textarea>
This command then would add a little amount of gray shade to the right right and lower direction of the text.