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