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