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