I have so far been trying to create a basic website layout shown in this picture. https://i.stack.imgur.com/KtNe4.jpg
It includes a grey background, with a centered div inside with a white background. With centered an image to the left and text etc to the right.
I am a large advocate for twitter bootstrap, so far I have implemented this. (React style)
<div class="container-fluid" style={{
'background-color' : 'rgb(224,225,226)',
'height' : '40vh'
}}>
<div class="row">
<div class="col-1 text-center"> Test </div>
<div class="col-10 text-center" style={{
'height' : '30vh',
'background-color' : 'rgb(255,255,255)',
'margin-top' : '5vh'
}}>
centered
</div>
<div class="col-1 text-center">test</div>
</div>
</div>
So far it half ways. But honestly I kind of gave us because it's turned into a nested mess. With website development I always know their is a bigger way, so I come here for people to roast my attempt so far and could give me in a proper way of reaching my goal.