how to centre in html code example
Example 1: how to center text in html
text-align: center;
Example 2: centering in html
<style>
element
{
text-align: center;
}
</style>
-------------------------------------------------------------------------------
style.css
element
{
text-align: center;
}
Example 3: how to center text in html
<p><center>YourText</center></p>