centering in html code example
Example 1: html how to center text
<p style="text-align:center;">Centered paragraph.</p>
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>
Example 4: align centre
.headerTwoDiv{
margin:1% auto;
margin-right: auto; margin-left: auto; width: 21%;
padding-top: 11px;
}