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