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