<html>
<head>
<title>Div example</title>
</head>
<body>
<style type="text/css">
.container {
position: relative;
left: 10px;
width: 400px;
height: 55px;
overflow: hidden;
margin: 0px;
}
.text {
position: absolute;
top: 1px;
font-size: 30pt;
font-family: Verdana;
color: #000000;
}
.shadow {
position: absolute;
top: 0px;
left: 3px;
font-size: 30pt;
font-family: Verdana;
color: #C0C0C0;
}
</style>
<div class="container">
<div class="shadow">Mobilefish.com</div>
<div class="text">Mobilefish.com</div>
</div>
</body>
</html>