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