html left align text code example

Example 1: html align text left

<p style="text-align: left;"> Left alignment </p>

Example 2: html align text right

<p style="text-align: right;"> Right alignment </p>

Example 3: text align css

p{
    text-align:center;/*values: center, left, right, etc...*/
}

Example 4: what are the different text align in html

/* There are four different text align values: left, right, center 
     and justify. For example: */
text-align: center;

Example 5: text align justify

text-align: justify;

Example 6: how to center text in html

With the aid of internal or external CSS you can center text with:

text-align: center;

Tags:

Html Example