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