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