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