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