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