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