I'm in the process of creating a webpage using HTML and CSS that needs to look exactly like this image: https://i.sstatic.net/wYKZw.png
Currently, I have a version of it on JSFiddle.
The issue with the JSFiddle version is that the text and rectangle (with text inside) are aligned to the left and right-center of the page, but I want them centered on the page with some space between them as shown in the image. Here's the HTML code I'm currently using:
<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'm unsure whether I need the .col-lg-6 class
as used above to replicate the image.
If not, should I use col-lg-offset-1
in my HTML code to achieve the desired image replication?