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