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