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