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