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