CSS – Default h1-h5 Headers

The Source Code to copy/paste:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
h1,h2,h3,h4,h5
    color: #005a9c
h1
    font-size: 2.6em
    line-height: 2.45em
h2
    font-size: 2.1em
    line-height: 1.9em
h3
    font-size: 1.8em
    line-height: 1.65em
h4
    font-size: 1.65em
    line-height: 1.4em
h5
    font-size: 1.4em
    line-height: 1.25em
}   

My official WebSite >