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