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