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