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