how to center h1 html code example
Example 1: center h1 css
h1 {
width:500px;
margin: 0 auto;
background: gray;
text-align: center;
}
Example 2: how to center an h1 in html
<style>
h1 {
text-align: center;
}
h2 {
text-align: left;
}
h3 {
text-align: right;
}
</style>
/* or you can do inlne
<h1 align="center">Example</h1>