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