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