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