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