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