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