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