how to center things in html code example
Example 1: center p html
<p style="text-align: center">this is centered</p>
Example 2: header center
div {
width: 100%;
height: 200px;
display: flex;
justify-content: center;
align-items: center;
background: blue;
}
text {
background: orange;
}
<div>
<text>Centered horizontally and vertically</text>
</div>
Example 3: how to center text in html
text-align: center;
Example 4: how to center text in html
<p><center>YourText</center></p>