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