text in the same line html
<!DOCTYPE html>
<html>
  <head>
    <style>
      .my-header h2 { 
 		 display: inline;
		}
		.my-header span { 
  		 float: right;
		}
    </style>
  </head>
  <body>
    <div class="my-header">
    <h2>Title</h2>
    <span>Status</span>
	</div>
	<div style="clear:both"></div>
  </body>
</html>
