I have this text:
How can I move that "Consultants" bit to the middle of the top two words, instead of on the left side like that.
Code (ignore the margin-left
):
<h6 style="margin-left: 795px;">Connect with <br>Consultants</h6>
I have this text:
How can I move that "Consultants" bit to the middle of the top two words, instead of on the left side like that.
Code (ignore the margin-left
):
<h6 style="margin-left: 795px;">Connect with <br>Consultants</h6>
Use css text-align
<h6 style="text-align:center">Connect with<br>Consultants</h6>