how to place the text in center in html code example
Example 1: html how to center text
<p style="text-align:center;">Centered paragraph.</p>
Example 2: how to center text in html
text-align: center;
Example 3: centering in html
<style>
element
{
text-align: center;
}
</style>
-------------------------------------------------------------------------------
style.css
element
{
text-align: center;
}
Example 4: how to center text in html
<p><center>YourText</center></p>