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