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