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