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