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