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