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