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