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