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