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