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