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