Please be aware that I specialize in development, not design.
My goal is to split a card div into two columns for desktop view. The text "This should be in Left Side" should be positioned on the left side, while "This should be on right side" should be on the right side.
Here is the HTML code I am currently using:
<div class="card">
<div class="card-header">
Featured
</div>
<div class="card-block">
<div class="col-md-4">
This should be in Left Side
</div>
<div class="col-md-8">
This should be on right side
</div>
</div>
</div>
If you would like to test it online, you can visit the jsfiddle here.
Can you help me identify my mistake and suggest a correction?