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