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