<!DOCTYPE html>
<html>

<head>
  <title>CSS Example</title>
  <style>
    body {
        color:#000000;
        background-color:#ffffff;
        font-family:arial, verdana, sans-serif; 
        font-size:12px;}

    span.wider {letter-spacing:5px;}  
  </style>
</head>

<body>
<h1>letter-spacing Property</h1>
<p>This is a normal spacing between letters
<p><span class="wider">This is a much wider spacing between letters</span>
</body>
</html>