<!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 {word-spacing:20px;}
  </style>
</head>

<body>
<h1>word-spacing Property</h1>
<p>This is the normal spacing between words
<p>Here I decided that I <span class="wider">want more spacing</span> between the previous 2 words
</body>
</html>