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