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