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