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