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