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