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