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