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