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