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