I'm trying to do main page for my website, I have picture how it should like this I've tried to use Bootstrap, but they all were stick to each other How should I solve this problem?
Here is my code for html:
<div class=" container-fluid">
<div class="row" style="margin-top: 15%;">
<div class="col-md-2 col-md-offset-5 text-center menu">About</div>
<div class="row">
<div class="col-md-2 col-md-offset-4 text-center menu ">Skills</div>
<div class="col-md-2 text-center menu">Projects</div>
</div>
<div class="col-md-2 col-md-offset-5 text-center menu">Contact</div>
</div>
</div>
And here is css:
.menu{
font-family: 'Poiret One', cursive;
font-size: 350%;
color: white;
background-color:grey;
border: 1px solid black;
opacity: 0.95;
transition-property: all;
transition-duration: 0.5s;
}