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