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