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