Скрипт

<STYLE>
.title { position:absolute;color:gray;font-size:1em;font-family:FONT-FAMILY: Arial,Helvetica,sans-serif; }
</STYLE>
<body>
<h1>
<script>
title='JAVASCRIPT';
titleY=-10;
titleX=10;
if (document.all){ center=Math.round(document.body.clientWidth/2); }
else if (document.getElementById){ center=Math.round(window.innerWidth/2); }
</script>
<script>
document.write(
'<div style="position:relative;width:230px;" >',
'<div class="title" style="top:'+(titleY-1)+'px;left:'+(titleX-1)+'px;color:gray;" >'+title+'</div>',
'<div class="title" style="top:'+(titleY+1)+'px;left:'+(titleX+1)+'px;color:red;" >'+title+'</div>',
'<div class="title" style="top:'+(titleY)+'px;left:'+(titleX)+'px;color:#FFE066;" >'+title+'</div>',
'</div>',
'');
</script></h1>
</body>

Красным меняем на свое.