Use on the webTotal Use [ 3017 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/bc8fbff83fbbcbcbf40eacc53b5ff90c?family=Faber+Sans+Pro+66+Kraeftig+Kursiv+reduced" 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/bc8fbff83fbbcbcbf40eacc53b5ff90c?family=Faber+Sans+Pro+66+Kraeftig+Kursiv+reduced);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Faber Sans Pro 66 Kraeftig Kursiv reduced";
src: url("https://db.onlinewebfonts.com/t/bc8fbff83fbbcbcbf40eacc53b5ff90c.eot");
src: url("https://db.onlinewebfonts.com/t/bc8fbff83fbbcbcbf40eacc53b5ff90c.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/bc8fbff83fbbcbcbf40eacc53b5ff90c.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/bc8fbff83fbbcbcbf40eacc53b5ff90c.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/bc8fbff83fbbcbcbf40eacc53b5ff90c.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/bc8fbff83fbbcbcbf40eacc53b5ff90c.svg#Faber Sans Pro 66 Kraeftig Kursiv reduced")format("svg");
}
2CSS rules to specify fonts
font-family: "Faber Sans Pro 66 Kraeftig Kursiv reduced";