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