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