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