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