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