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