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