<html> <head> <title>Example 22-4-A</title> </head> <body> <div align="center"> <h1>Example 22-4-A</h1> </div> <h2>With &lt;nobr&gt; tag</h2> <nobr> This is an example of a very long line that is surrounded by a &lt;nobr&gt;&lt;/nobr&gt; pair. This line will be displayed on the same line by the browser reguardless of how far the scrollbar has to go. If you look below, you will see the same information except that the &lt;nobr&gt;&lt;/nobr&gt; pair is missing. This allows the text to wrap at the edges of the display. </nobr> <p> <h2>Without &lt;nobr&gt; tag</h2> This is an example of a very long line that is surrounded by a &lt;nobr&gt;&lt;/nobr&gt; pair. This line will be displayed on the same line by the browser reguardless of how far the scrollbar has to go. If you look below, you will see the same information except that the &lt;nobr&gt;&lt;/nobr&gt; pair is missing. This allows the text to wrap at the edges of the display. </body> </html>