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