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