-1

I have this text:

enter image description here

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>

2 Answers2

1

Use css text-align

<h6 style="text-align:center">Connect with<br>Consultants</h6>
Hans Felix Ramos
  • 4,264
  • 3
  • 16
  • 40
1

You may use this

text-align: center;
Peter
  • 75
  • 5