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