centerize text code example
Example 1: html how to center text
<p style="text-align:center;">Centered paragraph.</p>
Example 2: css text align center
body {
text-align: center;
}
<p style="text-align:center;">Centered paragraph.</p>
body {
text-align: center;
}