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