Letter spacing in headings
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Letter spacing in headings</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
h1.header_spacing {letter-spacing:0.1em;}
h1 {font-family:"gill sans", arial, sans-serif;font-weight:normal;}
</style>
</head>
<body>
<h1>THIS HEADING IS ALL CAPITALS</h1>
<h1 class="header_spacing">THIS HEADING IS ALL CAPITALS</h1>
</body>
</html>
Related examples in the same category