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