My goal was to design a page with an intriguing layout, as seen below.
Click here for an example of the intended layout
The issue I'm facing is determining the best method to achieve this.
I am utilizing bootstrap, and here is what I have implemented so far:
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
<div class="row">
<div class="col-md-4" id="shapes" style="background: #FFF">
<h1>Here's where the shapes will happen.</h1>
</div>
<div class="col-md-6" id="content" style="background: #999">
<h1>page content</h1>
</div>
</div>
My concept involves creating 2 columns, where the smaller one on the left (col-md-4) contains the shaped elements, while the other column displays the page content.
I am struggling with shaping the elements, do you have any suggestions on how I can tackle this challenge?
Thank you in advance!