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