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