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