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