typeface.css 940 Bytes
Newer Older
Cholgrrr's avatar
Cholgrrr committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
@font-face {
    font-family: "ApfelGrotezk_regular";
    src: url("../typeface/ApfelGrotezk-Regular.woff2") format("woff2"),
        url("../typeface/ApfelGrotezk-Regular.woff") format("woff");
}

@font-face {
    font-family: "ApfelGrotezk_Brukt";
    src: url("../typeface/ApfelGrotezk-Brukt.woff2") format("woff2"),
        url("../typeface/ApfelGrotezk-Brukt.woff") format("woff");
}

@font-face {
    font-family: "ApfelGrotezk_Fett";
    src: url("../typeface/ApfelGrotezk-Fett.woff2") format("woff2"),
        url("../typeface/ApfelGrotezk-Fett.woff") format("woff");
}


p {
    font-family: 'ApfelGrotezk_regular';
}

h1 {
    font-family: 'ApfelGrotezk_fett';
    font-size: 55px;
    margin: 20px;
}

h2 {
    font-family: 'ApfelGrotezk_regular';
    font-size: 30px;
    color: black;
    padding-left: 1em;
    padding-right: 1em;
}

h3 {
    font-family: 'ApfelGrotezk_regular';
    font-size: 45px;
    text-align: center;
}