Maybe you could try sommat like this:
Code:
<!Doctype HTML>
<html lang="en">
<head>
<meta charset="utf=8" />
<title>text-shadow</title>
<style type="text/css">
body {background-color:#fff;}
p {position: relative;}
.headerText span {
color:#fff;
text-shadow:0 0 10px #260f47, 0 0 20px #250f49, 0 0 30px #260e48, 0 0 40px #260f49, 0 0 50px #26114d, 0 0 60px #25124b, 0 0 70px #24104c;
}
#name{
position: relative; top: -15px;
font:48px "Myriad Pro", Calibri, "Lucida Sans Unicode", Helvetica, "Helvetica Neue", "Lucida Sans","Trebuchet MS", Arial;
}
#title{
margin-left:3px;
font:72px "Trebuchet MS", "Myriad Pro", Calibri, "Lucida Sans Unicode", Helvetica, "Helvetica Neue", "Lucida Sans", Arial;
}
</style>
</head>
<body>
<p class="headerText"><span id="name">The Irf's</span><span id="title">Blog</span></p>
</body>
</html>
Bookmarks