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