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