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