css style all h1 tags code example
Example 1: css style all h1 tags
h1 {
/* add custom styling here */
}
Example 2: default CSS settings for h1 tag
h1 {
display: block;
font-size: 2em;
margin-top: 0.67em;
margin-bottom: 0.67em;
margin-left: 0;
margin-right: 0;
font-weight: bold;
}