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