align center text code example
Example 1: css align center
//HTML
<div class="parent">
<span>Hello World</span>
</div>
//CSS
.parent {
display: flex;
justify-content: center;
align-items: center;
}
Example 2: text align center
text-align: center;
Example 3: text align justify
text-align: justify;
Example 4: how to center text in html
<p><center>YourText</center></p>