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