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