I need help aligning my 3 buttons horizontally side by side. The current setup doesn't look good to me.
class= btn btn-danger
Can someone guide me on how to write the CSS for this?
This is my code:
<div class="row">
<div class="col-sm-4">
<h3>Desktop & laptop repairs</h3>
<p>We can replace all types of hardware, the most common repairs include</p>
<a href="#" class="btn btn-danger">READ MORE</a>
</div>
<div class="col-sm-4">
<h3>Virus removal</h3>
<p>If your computer is infected with a virus, we can help clean up your system. We can also assist in securing your system against future virus attacks.</p>
<a href="#" class="btn btn-danger">READ MORE</a>
</div>
<div class="col-sm-4">
<h3>Data recovery</h3>
<p>If your hard drive is faulty, we can replace it quickly and affordably. In most cases, we can recover your data. If Windows crashes, we can also save your data.</p>
<a href="#" class="btn btn-danger">READ MORE</a>
</div>
</div>
</div>