How to make Text Shadow using CSS 3 ?
Using HTML Text and CSS3, we can create the shadow effects on text…
suitable for headings or large text on web pages…
so, you do not need to change the text into image to get a shadow effect.
Example for css3 text shadow:
<html>
<head>
<title>How to make Font Shadow using CSS 3</title>
<style type="text/css">
.fontShadow {
color: #2178d9;
font-size: 24px;
}
.fontShadow {
text-shadow: 2px 2px 1px #000;
}
</style>
</head>
<body>
<p>I will show you
<span><h1>How to create Text shadow</h1></span>
</p>
</body>
</html>
The Result:
I will show you How to create Text shadow
So, with css text you will get a short time to work
