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