Sometimes it is necessary to keep a string of text together on one line:
Example:
"Industry Updates - 8th
September 2013"
What is desired is for the date to be kept together.
"Industry Updates
–
8th
September 2013"
First method
HTML – use  
"Industry Updates - 8th September 2013"
2nd Method CSS
.nowrap {
white-space: nowrap;
}
HTML
<span class="nowrap">Industry Updates -</span>
<span class="nowrap">8th September 2013</span>