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