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