html align right code example
Example 1: center text in css
.class {
text-align: center;
}
Example 2: html how to center text
<p style="text-align:center;">Centered paragraph.</p>
Example 3: html align right
<p style="text-align:right;">Example</p>
Example 4: css text align center
body {
text-align: center;
}
Example 5: css text align left
body {
text-align: left;
}