put text behind eachother with label tags css code example
Example 1: putting label on top of input css
input, label {
display:block;
}
Example 2: how to add an input next to each other
<form action="" class="form-inline">
<div class="form-group">
<input type="text" class="form-control" placeholder="MinVal">
</div>
<div class="form-group">
<input type="text" class="form-control" placeholder="MaxVal">
</div>
</form>