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