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