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