align text in html code example

Example 1: how to align text in html

<!-- Code By T64 -->

<!-- Solution -->
<p style="text-align: left">This text is aligned to the left side of the page</p>
<p style="text-align: center">This text is aligned to the center of the page</p>
<p style="text-align: right">This text is aligned to the right side of the page</p>

<!-- Output -->
This text is aligned to the left side of the page

				This text is aligned to the center of the page

                                 This text is aligned to the right side of the page

<!-- Website: https://installation.cf -->

Example 2: center text in css

.class {
	text-align: center;
}

Example 3: how to center align text in html

you just need to add this line of code in your tag(<p>; h1, h2, td etc):
  
<p align="center">sample text<p/>

Example 4: how to align text in html

<!-- Code by Scratchy -->
<!-- Twitter: @S_cratchy-->

<!-- Solution 1 -->
<p>
  This is some cool text in html, wow such cool text
</p>

<!-- Solution 2 -->
<font style="text-align:right;"> This text is on the right</font>
<font style="text-align:center;"> This text is in the center</font>
<font style="text-align:left;"> This text is on the left</font>

Example 5: html how to center text

<p style="text-align:center;">Centered paragraph.</p>

Example 6: text align css

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

Tags:

Html Example