Use on the webTotal Use [ 4566 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/0cb950a802e717b296be8009fe4ee987?family=Folker" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/0cb950a802e717b296be8009fe4ee987?family=Folker);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Folker";
src: url("https://db.onlinewebfonts.com/t/0cb950a802e717b296be8009fe4ee987.eot");
src: url("https://db.onlinewebfonts.com/t/0cb950a802e717b296be8009fe4ee987.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/0cb950a802e717b296be8009fe4ee987.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/0cb950a802e717b296be8009fe4ee987.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/0cb950a802e717b296be8009fe4ee987.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/0cb950a802e717b296be8009fe4ee987.svg#Folker")format("svg");
}
2CSS rules to specify fonts
font-family: "Folker";