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