Style heading tags with css reset
css, css-reset, html, html-heading
Solution
The way that you have set up the new header style will work fine. You might want think about adding
h1,h2,h3,h4,h5,h6 {
font-weight: normal;
font-style: normal;
}
to make sure the type is default set to non italic/oblique or bold (unless you want the default to be strong)
Problem
After using a css reset, all my heading tags are reset (ofcourse). What is the best way to style them like normal. Surely there is better way then this? ``` h1 { font-size: 2em; } h2 { font-size: 1.5em; } h3 { font-size: 1.3em; } h4 { font-size: 1em; } h5 { font-size: 0.8em; } h6 { font-size: 0.7em; } ```