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