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