skip to Main Content

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

Answers


  1. You may use this

    text-align: center;
    
    Login or Signup to reply.
  2. Use css text-align

    <h6 style="text-align:center">Connect with<br>Consultants</h6>
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search