I am making a webpage in HTML and CSS which have to be replicated exactly like this image.
At this moment, I am able to get this in fiddle.
The problem with the fiddle is: it (text and a rectangle(with some text)) is getting aligned at the left-side and right-side center of page whereas I want to bring them at the center of a page (with some distance between the two) as shown in the image. The HTML code which I am using is:
<div class="sections">
<div class="container">
<div class="row">
<div class="col-lg-6 left-side"> <a href="">Development & Design</a></div>
<div class="col-lg-6 right-side"> <a href="">Web Designer Qualifications Go here</a></div>
</div>
</div>
I am wondering whether do I need to .col-lg-6 class
as I have used above to replicate an image ?
If not then do I need to use col-lg-offset-1
in my HTML code in order to replicate an image ?