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