how to align to coloumns with bootstrap

To align two columns with Bootstrap, you can use the "justify-content-center" class to horizontally center the columns within a row. Here's an example:

<div class="row justify-content-center">
  <div class="col">
    Column 1 content here
  </div>
  <div class="col">
    Column 2 content here
  </div>
</div>