x
 
<html>
<head>
<title>CSS tutorial</title>
<style type="text/css">
.nowrap {
    white-space:nowrap;
}
.preline {
    white-space:pre-line;
}
</style>
</head>
<body>
<p class="nowrap">{<i>nowrap</i>}<br />Internet is a global network of many inter-connected computers or networks that communicate to each other via protocols, particularly TCP/IP, and serve data of different types to millions and billions of users. That collection of data or information is usually referenced as "The Web".</p>
<p class="preline">{<i>pre-line</i>}<br />Internet is a global network of many inter-connected computers or networks that communicate to each other via protocols, particularly TCP/IP, and serve data of different types to millions and billions of users. That collection of data or information is usually referenced as "The Web".</p>
<h6>Try to adjust the <i>white-space</i> property in the editor to see how it applies to the paragraph above!</h6>
</body>
</html>