<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<style type="text/css">
h3 { display: inline;} /* removes space before and after the heading elements */
.column {
width: 278px;
float: left; /* places divisions on the same line */
}
.space { margin-left: 66px;}
</style>
</head>
<body>
<div>
<h3>Welcome</h3><br>
<div class="column">Ensure you are not spamming, plugging or linking to your product, service or website anywhere within your post.</div>
<div class="column space">Ensure you are not spamming, plugging or linking to your product, service or website anywhere within your post.</div>
</div>
</body>
</html>
Paragraphs and heading elements insert a new line both before, and after, the element. To remove this, use the display property the way I did above.
Regards
Arkinder