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