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