Im Trying to create a website using bootstrap. I want to move the desktop icon a little to the right for better view. I tried floating etc. but I couldn't done it.
I tried floating etc. but I couldn't done it.
<div class="container-fluid mx-auto">
<div class="row">
<div class="col-md-6">
<div class="jumbotron">
<h1>Bootstrap Tutorial</h1>
<i class="fa fa-laptop fa-10x"></i>
<p>Bootstrap is the most popular HTML, CSS, and JS framework for developing responsive, mobile-first projects on the web.</p>
</div>
<p>This is some text.</p>
<p>This is another text.</p>
</div>
<div class="col-md-6">
<div class="jumbotron ">
<h1>Bootstrap Tutorial2</h1>
<i class="fa fa-desktop fa-10x "></i>
<p>Bootstrap is the most popular HTML, CSS, and JS framework for developing responsive, mobile-first projects on the web.</p>
</div>
<p>This is some text.</p>
<p>This is another text.</p>
</div>
</div>
</div>
thanks in advance.