Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
Here is an example I found.

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Pure CSS Letterpress Effect</title>
<!--
http://line25.com/tutorials/create-a-letterpress-effect-with-css-text-shadow
Start out by creating a simple background. In Photoshop create a 100x100px and fill with a dark grey. Add some texture using the Noise filter.
-->
<style>
body {
	background: #474747 url(bg.png);
}

h2 {
	font: 70px Tahoma, Helvetica, Arial, Sans-Serif;
	text-align: center;
}

color: #222;
text-shadow: 0px 2px 3px #555;
</style>
<h1>Line25</h1>
<h2>Pure CSS Letterpress Effect</h2>


</head>

</html>
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.