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