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