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