css center h1 code example
Example 1: center h1 css
h1 {
width:500px;
margin: 0 auto;
background: gray;
text-align: center;
}
Example 2: how to center text in css
.class {
text-align: center;
}
Example 3: css text align center
body {
text-align: center;
}