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