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