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