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