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