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