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