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