how to align text in center in html code example

Example 1: css center in td

td 
{
    text-align: center; 
    vertical-align: middle;
}

Example 2: how to align text in html




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

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

Example 3: html center text

Dieser Text wird zentriert.

Ebenso dieser Paragraph.

Example 4: how to center align text in html

you just need to add this line of code in your tag(

; h1, h2, td etc):

sample text

Example 5: how to align text in html





This is some cool text in html, wow such cool text

This text is on the right This text is in the center This text is on the left

Example 6: how to center text in html

text-align: center;

Tags:

Misc Example