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