I have the below code
<form id="editProfileForm" class="form-horizontal span8" method="post">
<div class="control-group">
<label class="control-label" for="inputSubject">Subject</label>
<div class="controls">
<input type="text" id="inputSubject" class="span8" >
</div>
</div>
<div class="control-group">
<label class="control-label" for="inputTags">Tags</label>
<div class="controls">
<input type="text" id="inputTags" class="span3">
</div>
</div>
<div class="control-group">
<label class="control-label" for="inputAccess">access</label>
<div class="controls">
<input type="text" id="inputAccess" class="span3">
</div>
</div>
I am getting the form like below 
Could some one suggest me how to get like below ? Thanks for your help

JS Fiddle link http://jsfiddle.net/kLuB3/331/
form-inlinewould be better suited for this thanform-horizontal.Try this:
With this CSS:
jsFiddle