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