center something html code example
Example 1: center p html
<p style="text-align: center">this is centered</p>
Example 2: center header html
<h1 align="center">This is heading 1</h1>
Example 3: centering in html
<style>
element
{
text-align: center;
}
</style>
-------------------------------------------------------------------------------
style.css
element
{
text-align: center;
}