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