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