center button in row code example
Example 1: bootstrap center button
<div class="text-center">
<button type="button">centered button</button>
</div>
Example 2: how to make a button centered in html5
<!--Put the button inside a p like this-->
<p style="text-align: center;"><button>See?</button>Whatever</p>