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