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