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