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