I am trying to make below HTML layout
As you can see, I have 2 rows and content in 1st row is indented within a Bootstrap Container class. In 2nd row, i have 2 columns having a background color and image respectively and they span across entire screen. However text within them is again indented similar to content in Row 1. Attaching the code i tried.
<div class="container" style="background: bisque;">
<div class="row">
<div class="col-xs-12">
<h1>Normal Boxed Width</h1>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-sm-6" style="background-color:lavender;">
<div class="row" >
<div class="container">
<h1>Left Panel</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Recusandae doloribus unde, distinctio a autem, soluta nulla similique. Vero natus deleniti, culpa consequuntur eveniet beatae laudantium in fuga mollitia sapiente! Assumenda!</p>
</div>
</div>
</div>
<div class="col-sm-6" style="background-color:aliceblue;">
<h1>Right Panel</h1>
</div>
</div>
</div>
I also tried few solutions provided in this link However this doesn't seem to be the right approach. How can i achieve the layout which is shown in above image?