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