Text Alignment

Left Alignment

<div>
Your content here..
</div>
<p>
Your content here..
</p>
<div class="text-left">
Your content here..
</div>
<p class="text-left">
Your content here..
</p>

Right Alignment

<div class="text-align-right">
Your content here..
</div>
<p class="text-align-right">
Your content here..
</p>
<div class="text-right">
Your content here..
</div>
<p class="text-right">
Your content here..
</p>

Center Alignment

<div class="text-align-center">
Your content here..
</div>
<p class="text-align-center">
Your content here..
</p>
<div class="text-center">
Your content here..
</div>
<p class="text-center">
Your content here..
</p>

Justify

<div class="text-align-justify">
Your content here..
</div>
<p class="text-align-justify">
Your content here..
</p>