<!DOCTYPE html>
<html>

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

    .pre    {white-space:pre;}
    .nowrap {white-space:nowrap;}  
  </style>
</head>

<body>
<h1>white-space Property</h1>
<p class="normal">Here is some text inside a paragraph designed to test the white-space property of CSS.</p>

<p class="pre">    This is the white-space <b>"pre"</b>
                 Here  is  some 
                 text inside a paragraph 
                 designed to test the white-space property of C   S   S. </p>

<p class="nowrap">This is white-space <b>"nowrap"</b> 
The line does not wrap no matter how long it is.
Here is some text inside a paragraph designed to test the white-space property of CSS. Here is some text inside a paragraph designed to test the white-space property of CSS. Here is some text inside a paragraph designed to test the white-space property of CSS.</p>
</body>
</html>