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