I'm attempting to use bootstrap to align rows and columns in my html so that it resembles the layout shown in this image....
https://i.sstatic.net/KC0sa.png
I experimented with code like this...
<div class="container">
<div class="row">
<div class="col-sm-2"><span><strong>Data</strong></span></div>
<div class="col-sm-1">Information</div>
<div class="col-sm-2 offset-sm-12"><strong>Date due</strong></div>
<div class="col-sm-1 offset-sm-12">11/28/2017</div>
</div>
However, I am struggling to achieve the correct alignment. Could someone assist me in achieving a similar alignment for the first row as shown in the image?