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