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