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