how to align text in html using css code example
Example 1: css text align justify
div {
text-align: justify;
text-justify: inter-word;
}
Example 2: how to center text in css
.class {
text-align: center;
}
Example 3: center text css
p {
text-align: center;
}